aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-02-14 11:43:09 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2019-02-14 11:43:09 +0100
commitb7edec96367f05b641c80163a8e7be8425631bdd (patch)
tree39756e806d2abb3cf45b023b2195cdde7033cdf4
parent76ed7e6681a79c6249fd8ac4d3875705168c1669 (diff)
downloadAUR-b7edec96367f05b641c80163a8e7be8425631bdd.tar.gz
AUR-b7edec96367f05b641c80163a8e7be8425631bdd.tar.zst
AUR-b7edec96367f05b641c80163a8e7be8425631bdd.zip
Update to 1.08
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD23
2 files changed, 15 insertions, 16 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2e9c163..9aa6daa 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,8 @@
1# Generated by mksrcinfo v8
2# Thu Feb 14 10:42:54 UTC 2019
1pkgbase = tack 3pkgbase = tack
2 pkgdesc = A program that can be used to verify or refine a terminfo (terminal information) description of a terminal. 4 pkgdesc = A program that can be used to verify or refine a terminfo (terminal information) description of a terminal.
3 pkgver = 1.07_20150606 5 pkgver = 1.08
4 pkgrel = 1 6 pkgrel = 1
5 url = http://invisible-island.net/ncurses/tack.html 7 url = http://invisible-island.net/ncurses/tack.html
6 changelog = tack.changelog 8 changelog = tack.changelog
@@ -9,8 +11,8 @@ pkgbase = tack
9 license = custom 11 license = custom
10 depends = ncurses 12 depends = ncurses
11 provides = tack 13 provides = tack
12 source = ftp://invisible-island.net/ncurses/current/tack-1.07-20150606.tgz 14 source = https://invisible-mirror.net/archives/ncurses/tack-1.08.tgz
13 md5sums = bcd046cedaf3cb0415a01e0b398e5b2f 15 sha512sums = 66dd4bb868087e6a8666119d32c873c8722453fe99d3eb58ab645aa0552771cca5d26f8b1fcccaf095d0316bceb011a49bc24a3b06fafc72cb2f59d251ec71d7
14 16
15pkgname = tack 17pkgname = tack
16 18
diff --git a/PKGBUILD b/PKGBUILD
index e48b5e1..801e734 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,8 +1,8 @@
1# Contributor: Immae <ismael.bouya@normalesup.org> 1# Contributor: Immae <ismael.bouya@normalesup.org>
2
3# Maintainer: Immae <ismael.bouya@normalesup.org> 2# Maintainer: Immae <ismael.bouya@normalesup.org>
3
4pkgname=tack 4pkgname=tack
5pkgver=1.07_20150606 5pkgver=1.08
6pkgrel=1 6pkgrel=1
7pkgdesc="A program that can be used to verify or refine a terminfo (terminal information) description of a terminal." 7pkgdesc="A program that can be used to verify or refine a terminfo (terminal information) description of a terminal."
8arch=('i686' 'x86_64') 8arch=('i686' 'x86_64')
@@ -11,23 +11,20 @@ license=('custom')
11changelog="$pkgname.changelog" 11changelog="$pkgname.changelog"
12provides=('tack') 12provides=('tack')
13depends=('ncurses') 13depends=('ncurses')
14source=("ftp://invisible-island.net/ncurses/current/${pkgname}-${pkgver//_/-}.tgz") 14source=("https://invisible-mirror.net/archives/ncurses/${pkgname}-${pkgver}.tgz")
15 15sha512sums=('66dd4bb868087e6a8666119d32c873c8722453fe99d3eb58ab645aa0552771cca5d26f8b1fcccaf095d0316bceb011a49bc24a3b06fafc72cb2f59d251ec71d7')
16
17 16
18build() { 17build() {
19 cd ${srcdir}/${pkgname}-${pkgver//_/-} 18 cd ${srcdir}/${pkgname}-${pkgver}
20 ./configure --prefix=/usr \ 19 ./configure --prefix=/usr --bindir=/usr/bin
21 --bindir=/usr/bin 20 make
22 make
23} 21}
24 22
25package() { 23package() {
26 cd ${srcdir}/${pkgname}-${pkgver//_/-} 24 cd ${srcdir}/${pkgname}-${pkgver}
27 make DESTDIR=${pkgdir} install 25 make DESTDIR=${pkgdir} install
28 install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE" 26 install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
29} 27}
30 28
31 29
32md5sums=('bcd046cedaf3cb0415a01e0b398e5b2f')
33 30