diff options
author | onodera@openmailbox.org <onodera@openmailbox.org> | 2016-04-15 19:15:03 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-04-18 16:04:21 +0000 |
commit | 0f7390d839badcd04e9e8c21bb8cde1af7dc074e (patch) | |
tree | b4c4651017e0bdc8bae8480247c03ec53d06e3d8 | |
parent | 879178f4da4d7eb85c84d82194f7d8a0b408842b (diff) | |
download | aports-0f7390d839badcd04e9e8c21bb8cde1af7dc074e.tar.bz2 aports-0f7390d839badcd04e9e8c21bb8cde1af7dc074e.tar.xz |
testing/xtitle: new aport
https://githib.com/basekerville/xtitle
outputs X window titles
-rw-r--r-- | testing/xtitle/APKBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/xtitle/APKBUILD b/testing/xtitle/APKBUILD new file mode 100644 index 0000000000..389137e3b6 --- /dev/null +++ b/testing/xtitle/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Camille Scholtz <onodera@openmailbox.org> +# Maintainer: Camille Scholtz <onodera@openmailbox.org> +pkgname=xtitle +pkgver=0.3 +pkgrel=0 +pkgdesc="outputs X window titles" +url="https://github.com/baskerville/xtitle" +arch="all" +license="unlicense" +depends="" +depends_dev="xcb-util-wm-dev" +makedepends="$depends_dev" +install="" +subpackages="" +source="saveas-https://github.com/baskerville/$pkgname/archive/$pkgver.tar.gz/$pkgname-$pkgver.tar.gz" + +builddir="$srcdir"/$pkgname-$pkgver +build() { + cd "$builddir" + make || return 1 +} + +package() { + cd "$builddir" + make PREFIX=/usr DESTDIR="$pkgdir" install || return 1 +} + +md5sums="9d8118284e55b25274af4f8da4124e2e xtitle-0.3.tar.gz" +sha256sums="817af5b7e6014d24840404722c2b6a44c44a7b226dfad1e76d0087a68833231f xtitle-0.3.tar.gz" +sha512sums="e9134490b1369a6a18e56f33c4cafda0a4e2b66871bd7e430792d08790ee37326a96c95acc8452721ed20fdde001bf31d15fd6ee76537629fe5f1d69cf04d623 xtitle-0.3.tar.gz" |