diff options
author | ptrcnull <git@ptrcnull.me> | 2022-12-10 22:24:29 +0000 |
---|---|---|
committer | psykose <alice@ayaya.dev> | 2022-12-10 23:24:32 +0100 |
commit | 35364b69ce7b24f8419d9c5ed3bc733ce3b6e4dd (patch) | |
tree | 9948f97af266bcf292f103e3597fc2752d641c58 /main/iucode-tool | |
parent | 6f26e7af8804d64820609b7a112fa973fec048a0 (diff) | |
download | aports-35364b69ce7b24f8419d9c5ed3bc733ce3b6e4dd.zip |
main/*: modernize
- mostly removing unnecesary 'cd $builddir' to satisfy AL13 linting rule
- some small fixups like renaming `$_builddir` to `$builddir`
Diffstat (limited to 'main/iucode-tool')
-rw-r--r-- | main/iucode-tool/APKBUILD | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/main/iucode-tool/APKBUILD b/main/iucode-tool/APKBUILD index d4b45c1056c..51137f09218 100644 --- a/main/iucode-tool/APKBUILD +++ b/main/iucode-tool/APKBUILD @@ -12,7 +12,6 @@ source="https://gitlab.com/iucode-tool/iucode-tool/-/archive/v$pkgver/iucode-too builddir="$srcdir/iucode-tool-v$pkgver" build() { - cd "$builddir" ./autogen.sh ./configure \ --build=$CBUILD \ @@ -25,12 +24,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make install DESTDIR="$pkgdir" } |