blob: 4b581d883dfcd767fcd8df9f1fbb0e4c5c08fc47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Contributor: Camille Scholtz <onodera@openmailbox.org>
# Maintainer: Camille Scholtz <onodera@openmailbox.org>
pkgname=xtitle
pkgver=0.4.3
pkgrel=0
pkgdesc="outputs X window titles"
url="https://github.com/baskerville/xtitle"
arch="all"
license="unlicense"
depends_dev="xcb-util-wm-dev"
makedepends="$depends_dev"
source="$pkgname-$pkgver.tar.gz::https://github.com/baskerville/$pkgname/archive/$pkgver.tar.gz"
builddir="$srcdir"/$pkgname-$pkgver
build() {
cd "$builddir"
make
}
package() {
cd "$builddir"
make PREFIX=/usr DESTDIR="$pkgdir" install
}
sha512sums="2c73bfaa8b9b1533288aadd60e85356a152b1a5503ab744b17bbbf4f52aeb015583a032e0ca05ead517db4284042876a14958bfef80dd10b90360e1a905fae8c xtitle-0.4.3.tar.gz"
|