diff options
Diffstat (limited to 'user')
-rw-r--r-- | user/abiword/APKBUILD | 12 | ||||
-rw-r--r-- | user/goffice/APKBUILD | 5 | ||||
-rw-r--r-- | user/libnftnl/APKBUILD | 7 | ||||
-rw-r--r-- | user/nftables/APKBUILD | 6 | ||||
-rw-r--r-- | user/wv/APKBUILD | 4 |
5 files changed, 8 insertions, 26 deletions
diff --git a/user/abiword/APKBUILD b/user/abiword/APKBUILD index ae494c331..76ae5ea08 100644 --- a/user/abiword/APKBUILD +++ b/user/abiword/APKBUILD @@ -1,5 +1,5 @@ # Contributor: Natanael Copa <ncopa@alpinelinux.org> -# Maintainer: +# Maintainer: A. Wilcox <awilfox@adelielinux.org> pkgname=abiword pkgver=3.0.2 pkgrel=0 @@ -11,26 +11,21 @@ license="GPL-2.0+" makedepends="bzip2-dev enchant-dev fribidi-dev goffice-dev gtk+3.0-dev libgsf-dev libjpeg-turbo-dev librsvg-dev libxslt-dev pcre-dev popt-dev wv-dev" - # openxml plugin makedepends="$makedepends boost-dev" - # collab plugin makedepends="$makedepends gnutls-dev libsoup-dev dbus-glib-dev" - subpackages="$pkgname-dev $pkgname-doc" - _plugins="applix babelfish bmp clarisworks collab docbook eml epub \ freetranslation garble gdict gimp google hancom hrtext iscii kword \ latex loadbindings mht mif mswrite openwriter openxml opml paint \ passepartout pdb pdf presentation s5 sdw t602 urldict wikipedia wml \ xslfo" - source="https://www.abisource.com/downloads/$pkgname/$pkgver/source/$pkgname-$pkgver.tar.gz - fix-black-drawing-regression.patch" + fix-black-drawing-regression.patch + " build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -42,7 +37,6 @@ build() { } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } diff --git a/user/goffice/APKBUILD b/user/goffice/APKBUILD index 6847a0d5c..91f8ef190 100644 --- a/user/goffice/APKBUILD +++ b/user/goffice/APKBUILD @@ -1,5 +1,5 @@ # Contributor: Natanael Copa <ncopa@alpinelinux.org> -# Maintainer: +# Maintainer: A. Wilcox <awilfox@adelielinux.org> pkgname=goffice pkgver=0.10.44 pkgrel=0 @@ -14,7 +14,6 @@ subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" source="https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz" build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -27,12 +26,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } diff --git a/user/libnftnl/APKBUILD b/user/libnftnl/APKBUILD index 7c335bca8..f2796b3ea 100644 --- a/user/libnftnl/APKBUILD +++ b/user/libnftnl/APKBUILD @@ -1,5 +1,5 @@ # Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net> -# Maintainer: +# Maintainer: Luis Ressel <aranea@aixah.de> pkgname=libnftnl pkgver=1.1.2 pkgrel=0 @@ -12,7 +12,6 @@ subpackages="$pkgname-dev" source="https://netfilter.org/projects/libnftnl/files/$pkgname-$pkgver.tar.bz2" build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -24,12 +23,10 @@ build() { } check() { - cd "$builddir"/tests - make check # builds test binaries + make -C tests check # builds test binaries } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } diff --git a/user/nftables/APKBUILD b/user/nftables/APKBUILD index b70d5e9a4..13cd0a2a2 100644 --- a/user/nftables/APKBUILD +++ b/user/nftables/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net> # Contributor: Jakub Jirutka <jakub@jirutka.cz> # Contributor: Francesco Colista <fcolista@alpinelinux.org> -# Maintainer: +# Maintainer: Luis Ressel <aranea@aixah.de> pkgname=nftables pkgver=0.9.0 pkgrel=0 @@ -17,8 +17,6 @@ source="https://netfilter.org/projects/nftables/files/$pkgname-$pkgver.tar.bz2 nftables.initd" build() { - cd "$builddir" - DB2MAN=docbook2x-man ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -32,8 +30,6 @@ build() { } package() { - cd "$builddir" - make DESTDIR="$pkgdir" install install -Dm755 "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname diff --git a/user/wv/APKBUILD b/user/wv/APKBUILD index 0ef0fe299..8211b555d 100644 --- a/user/wv/APKBUILD +++ b/user/wv/APKBUILD @@ -1,5 +1,5 @@ # Contributor: Natanael Copa <ncopa@alpinelinux.org> -# Maintainer: +# Maintainer: A. Wilcox <awilfox@adelielinux.org> pkgname=wv pkgver=1.2.9 pkgrel=0 @@ -19,7 +19,6 @@ prepare() { } build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -29,7 +28,6 @@ build() { } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |