diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2017-08-13 22:22:54 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2017-08-13 22:22:54 +0200 |
commit | f61b4b381e865dfa4fbfeef99a03b4416e487230 (patch) | |
tree | 7ecf1410fe039900cf08eed80014e9a90e185aa0 /testing/openttd | |
parent | aaf24e91093e4f2ddbdd3e497d4c8af88151c6de (diff) | |
download | aports-f61b4b381e865dfa4fbfeef99a03b4416e487230.tar.bz2 aports-f61b4b381e865dfa4fbfeef99a03b4416e487230.tar.xz |
testing/openttd: modernize APKBUILD
Diffstat (limited to 'testing/openttd')
-rw-r--r-- | testing/openttd/APKBUILD | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/testing/openttd/APKBUILD b/testing/openttd/APKBUILD index d71153cf5f..ba26648693 100644 --- a/testing/openttd/APKBUILD +++ b/testing/openttd/APKBUILD @@ -32,13 +32,12 @@ build() { --with-freetype \ --with-fontconfig \ --without-icu \ - || return 1 - make || return 1 + make } package() { cd "$builddir" - make install || return 1 + make install } lang() { @@ -49,7 +48,7 @@ lang() { local i for i in $(find usr/share/games/openttd/lang/ ! -name 'english.lng' -type f); do - mv "$i" "$subpkgdir"/"$i" || return 1 + mv "$i" "$subpkgdir"/"$i" done } |