]> git.immae.eu Git - perso/Immae/Config/AUR.git/blame - PKGBUILD
Update to 1.07-20150606
[perso/Immae/Config/AUR.git] / PKGBUILD
CommitLineData
9bb51883
I
1# Contributor: Immae <ismael.bouya@normalesup.org>
2
3# Maintainer: Immae <ismael.bouya@normalesup.org>
4pkgname=tack
76ed7e66 5pkgver=1.07_20150606
9bb51883
I
6pkgrel=1
7pkgdesc="A program that can be used to verify or refine a terminfo (terminal information) description of a terminal."
8arch=('i686' 'x86_64')
9url="http://invisible-island.net/ncurses/tack.html"
10license=('custom')
11changelog="$pkgname.changelog"
12provides=('tack')
13depends=('ncurses')
14source=("ftp://invisible-island.net/ncurses/current/${pkgname}-${pkgver//_/-}.tgz")
15
16
17
18build() {
19 cd ${srcdir}/${pkgname}-${pkgver//_/-}
20 ./configure --prefix=/usr \
21 --bindir=/usr/bin
22 make
23}
24
25package() {
26 cd ${srcdir}/${pkgname}-${pkgver//_/-}
27 make DESTDIR=${pkgdir} install
28 install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
29}
30
31
76ed7e66 32md5sums=('bcd046cedaf3cb0415a01e0b398e5b2f')
9bb51883 33