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