aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2017-09-03 15:00:27 -0500
committerNatanael Copa <ncopa@alpinelinux.org>2017-09-19 10:53:39 +0000
commita6b5de87d553d4144b86d67ef590ffde5516e781 (patch)
tree5171aef5617528bf1684885c78b7d6204f7d6b00
parentdb8262bcc7ae6f684da54b9b0d1346d3fff084ac (diff)
main/libxfixes: modernise, mark as having no test suite, fix deps
-rw-r--r--main/libxfixes/APKBUILD13
1 files changed, 6 insertions, 7 deletions
diff --git a/main/libxfixes/APKBUILD b/main/libxfixes/APKBUILD
index 2439dc5fcb0..01ec544b1c5 100644
--- a/main/libxfixes/APKBUILD
+++ b/main/libxfixes/APKBUILD
@@ -1,14 +1,14 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libxfixes
pkgver=5.0.3
-pkgrel=0
+pkgrel=1
pkgdesc="X11 miscellaneous 'fixes' extension library"
url="http://xorg.freedesktop.org/"
arch="all"
license="custom"
+options="!check" # No test suite.
depends=
-depends_dev="xproto fixesproto libx11-dev"
-makedepends="$depends_dev xextproto"
+makedepends="fixesproto libx11-dev util-macros xextproto xproto"
subpackages="$pkgname-dev $pkgname-doc"
source="http://www.x.org/releases/individual/lib/libXfixes-$pkgver.tar.bz2"
@@ -22,14 +22,13 @@ build() {
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
- --localstatedir=/var \
- || return 1
- make || return 1
+ --localstatedir=/var
+ make
}
package() {
cd "$builddir"
- make DESTDIR="$pkgdir" install || return 1
+ make DESTDIR="$pkgdir" install
}
md5sums="07e01e046a0215574f36a3aacb148be0 libXfixes-5.0.3.tar.bz2"