aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-02-14 14:19:30 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2019-02-14 14:19:30 +0100
commit59c4f956ea118a36527820bd067c77c829f423f6 (patch)
treeef1bd9f71276ef43065fb692007ed33431862387
parent402d8bae8610c14c63740deff96a7293355a1704 (diff)
parentb7edec96367f05b641c80163a8e7be8425631bdd (diff)
downloadAUR-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
-rw-r--r--tack/.SRCINFO18
-rw-r--r--tack/PKGBUILD30
-rw-r--r--tack/tack.changelog2
3 files changed, 50 insertions, 0 deletions
diff --git a/tack/.SRCINFO b/tack/.SRCINFO
new file mode 100644
index 0000000..9aa6daa
--- /dev/null
+++ b/tack/.SRCINFO
@@ -0,0 +1,18 @@
1# Generated by mksrcinfo v8
2# Thu Feb 14 10:42:54 UTC 2019
3pkgbase = tack
4 pkgdesc = A program that can be used to verify or refine a terminfo (terminal information) description of a terminal.
5 pkgver = 1.08
6 pkgrel = 1
7 url = http://invisible-island.net/ncurses/tack.html
8 changelog = tack.changelog
9 arch = i686
10 arch = x86_64
11 license = custom
12 depends = ncurses
13 provides = tack
14 source = https://invisible-mirror.net/archives/ncurses/tack-1.08.tgz
15 sha512sums = 66dd4bb868087e6a8666119d32c873c8722453fe99d3eb58ab645aa0552771cca5d26f8b1fcccaf095d0316bceb011a49bc24a3b06fafc72cb2f59d251ec71d7
16
17pkgname = tack
18
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
4pkgname=tack
5pkgver=1.08
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=("https://invisible-mirror.net/archives/ncurses/${pkgname}-${pkgver}.tgz")
15sha512sums=('66dd4bb868087e6a8666119d32c873c8722453fe99d3eb58ab645aa0552771cca5d26f8b1fcccaf095d0316bceb011a49bc24a3b06fafc72cb2f59d251ec71d7')
16
17build() {
18 cd ${srcdir}/${pkgname}-${pkgver}
19 ./configure --prefix=/usr --bindir=/usr/bin
20 make
21}
22
23package() {
24 cd ${srcdir}/${pkgname}-${pkgver}
25 make DESTDIR=${pkgdir} install
26 install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
27}
28
29
30
diff --git a/tack/tack.changelog b/tack/tack.changelog
new file mode 100644
index 0000000..2b85f85
--- /dev/null
+++ b/tack/tack.changelog
@@ -0,0 +1,2 @@
12013-10-20 initial PKGBUILD
2