aboutsummaryrefslogtreecommitdiff
path: root/community/libgsasl
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-02-26 22:24:38 -0300
committerLeo <thinkabit.ukim@gmail.com>2020-02-26 23:33:40 -0300
commit2984ad114ab465cfce4119cbaf7f5796022d179d (patch)
tree3e9d8be5c8db1624ab917c9b48bbfc21722b3434 /community/libgsasl
parent1ce8779e866d52f7a2926e1ec5c3d7bbc9973e69 (diff)
downloadalpine_aports-2984ad114ab465cfce4119cbaf7f5796022d179d.tar.bz2
alpine_aports-2984ad114ab465cfce4119cbaf7f5796022d179d.tar.xz
alpine_aports-2984ad114ab465cfce4119cbaf7f5796022d179d.zip
community/libgsasl: modernize
Diffstat (limited to 'community/libgsasl')
-rw-r--r--community/libgsasl/APKBUILD3
1 files changed, 0 insertions, 3 deletions
diff --git a/community/libgsasl/APKBUILD b/community/libgsasl/APKBUILD
index 92191329bc..7a170d393f 100644
--- a/community/libgsasl/APKBUILD
+++ b/community/libgsasl/APKBUILD
@@ -12,7 +12,6 @@ subpackages="$pkgname-dev"
12source="http://download.savannah.nongnu.org/releases/gsasl/libgsasl-$pkgver.tar.gz" 12source="http://download.savannah.nongnu.org/releases/gsasl/libgsasl-$pkgver.tar.gz"
13 13
14build() { 14build() {
15 cd "$builddir"
16 ./configure \ 15 ./configure \
17 --prefix=/usr \ 16 --prefix=/usr \
18 --sysconfdir=/etc \ 17 --sysconfdir=/etc \
@@ -26,12 +25,10 @@ build() {
26} 25}
27 26
28check() { 27check() {
29 cd "$builddir"
30 make tests 28 make tests
31} 29}
32 30
33package() { 31package() {
34 cd "$builddir"
35 make DESTDIR="$pkgdir" install 32 make DESTDIR="$pkgdir" install
36 rm -f "$pkgdir"/usr/lib/*.a 33 rm -f "$pkgdir"/usr/lib/*.a
37} 34}