blob: c1ef245bfa6466c3bc3ff183ba639a71312717b3 (
plain) (
blame)
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
26
27
28
29
30
31
32
33
|
# Contributor: Immae <ismael.bouya@normalesup.org>
# Maintainer: Immae <ismael.bouya@normalesup.org>
pkgname=tack
pkgver=1.07_20130713
pkgrel=1
pkgdesc="A program that can be used to verify or refine a terminfo (terminal information) description of a terminal."
arch=('i686' 'x86_64')
url="http://invisible-island.net/ncurses/tack.html"
license=('custom')
changelog="$pkgname.changelog"
provides=('tack')
depends=('ncurses')
source=("ftp://invisible-island.net/ncurses/current/${pkgname}-${pkgver//_/-}.tgz")
build() {
cd ${srcdir}/${pkgname}-${pkgver//_/-}
./configure --prefix=/usr \
--bindir=/usr/bin
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver//_/-}
make DESTDIR=${pkgdir} install
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
md5sums=('c79fd171415dbdce11032e6bb42aa6f6')
|