aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-01-30 20:35:26 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2012-01-30 20:35:26 +0000
commit4ed607998a9fa94b6c13e867ad33e330d752e0f0 (patch)
tree9ae1576f5a659d4537236f6a46a79523f417a6d7 /testing
parent4bdcbd250f513a831d496c49155d9a893c4d5970 (diff)
downloadaports-4ed607998a9fa94b6c13e867ad33e330d752e0f0.tar.bz2
aports-4ed607998a9fa94b6c13e867ad33e330d752e0f0.tar.xz
main/xprop: moved from testing
Diffstat (limited to 'testing')
-rw-r--r--testing/xprop/APKBUILD41
1 files changed, 0 insertions, 41 deletions
diff --git a/testing/xprop/APKBUILD b/testing/xprop/APKBUILD
deleted file mode 100644
index ee0a935cd6..0000000000
--- a/testing/xprop/APKBUILD
+++ /dev/null
@@ -1,41 +0,0 @@
-# Contributor: Natanael Copa <ncopa@alpinelinux.org>
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=xprop
-pkgver=1.2.1
-pkgrel=0
-pkgdesc="Property displayer for X"
-url="http://cgit.freedesktop.org/xorg/app/xprop/"
-arch="all"
-license="AS-IS"
-depends=""
-depends_dev=""
-makedepends="libx11-dev util-macros"
-install=""
-subpackages="$pkgname-doc"
-source="http://xorg.freedesktop.org/archive/individual/app/xprop-$pkgver.tar.bz2"
-
-_builddir="$srcdir"/xprop-$pkgver
-prepare() {
- local i
- cd "$_builddir"
- for i in $source; do
- case $i in
- *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
- esac
- done
-}
-
-build() {
- cd "$_builddir"
- ./configure --prefix=/usr \
- || return 1
- make || return 1
-}
-
-package() {
- cd "$_builddir"
- make DESTDIR="$pkgdir" install || return 1
- rm -f "$pkgdir"/usr/lib/*.la
-}
-
-md5sums="d5529dc8d811efabd136ca2d8e857deb xprop-1.2.1.tar.bz2"