diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-02-14 14:19:30 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-02-14 14:19:30 +0100 |
commit | 59c4f956ea118a36527820bd067c77c829f423f6 (patch) | |
tree | ef1bd9f71276ef43065fb692007ed33431862387 /tack/PKGBUILD | |
parent | 402d8bae8610c14c63740deff96a7293355a1704 (diff) | |
parent | b7edec96367f05b641c80163a8e7be8425631bdd (diff) | |
download | AUR-59c4f956ea118a36527820bd067c77c829f423f6.tar.gz AUR-59c4f956ea118a36527820bd067c77c829f423f6.tar.zst AUR-59c4f956ea118a36527820bd067c77c829f423f6.zip |
Add 'tack/' from commit 'b7edec96367f05b641c80163a8e7be8425631bdd'
git-subtree-dir: tack
git-subtree-mainline: 402d8bae8610c14c63740deff96a7293355a1704
git-subtree-split: b7edec96367f05b641c80163a8e7be8425631bdd
Diffstat (limited to 'tack/PKGBUILD')
-rw-r--r-- | tack/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tack/PKGBUILD b/tack/PKGBUILD new file mode 100644 index 0000000..801e734 --- /dev/null +++ b/tack/PKGBUILD | |||
@@ -0,0 +1,30 @@ | |||
1 | # Contributor: Immae <ismael.bouya@normalesup.org> | ||
2 | # Maintainer: Immae <ismael.bouya@normalesup.org> | ||
3 | |||
4 | pkgname=tack | ||
5 | pkgver=1.08 | ||
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=("https://invisible-mirror.net/archives/ncurses/${pkgname}-${pkgver}.tgz") | ||
15 | sha512sums=('66dd4bb868087e6a8666119d32c873c8722453fe99d3eb58ab645aa0552771cca5d26f8b1fcccaf095d0316bceb011a49bc24a3b06fafc72cb2f59d251ec71d7') | ||
16 | |||
17 | build() { | ||
18 | cd ${srcdir}/${pkgname}-${pkgver} | ||
19 | ./configure --prefix=/usr --bindir=/usr/bin | ||
20 | make | ||
21 | } | ||
22 | |||
23 | package() { | ||
24 | cd ${srcdir}/${pkgname}-${pkgver} | ||
25 | make DESTDIR=${pkgdir} install | ||
26 | install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE" | ||
27 | } | ||
28 | |||
29 | |||
30 | |||