diff options
Diffstat (limited to 'user/xscope/APKBUILD')
-rw-r--r-- | user/xscope/APKBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/user/xscope/APKBUILD b/user/xscope/APKBUILD new file mode 100644 index 000000000..9b4ce4205 --- /dev/null +++ b/user/xscope/APKBUILD @@ -0,0 +1,37 @@ +# Contributor: A. Wilcox <awilfox@adelielinux.org> +# Maintainer: A. Wilcox <awilfox@adelielinux.org> +pkgname=xscope +pkgver=1.4.1 +pkgrel=0 +pkgdesc="Monitor communication between an X11 client and server" +url="https://www.X.Org/" +arch="all" +license="X11" +depends="" +makedepends="util-macros xorgproto-dev" +subpackages="$pkgname-doc" +source="https://www.x.org/releases/individual/app/xscope-$pkgver.tar.bz2" + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var + make +} + +check() { + cd "$builddir" + make check +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="0b35bd51ed3118bde72359280a610f6f3f7d5e62f1673e493f13d2118ce07bfe4ae7ccc4231556d1c24f4bd7add88c46a4ea478d825fc9cf3fd723dc662d2874 xscope-1.4.1.tar.bz2" |