blob: 1ecb7d65bb94e4b51ddfbc2e8f1cbf1747235a96 (
plain)
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
|
# Maintainer: Boris Bera <bboris at rsoft dot ca>
pkgname=autotags
pkgver=0.2.0
pkgrel=1
pkgdesc="A little tool that watches your source code and generates ctags."
arch=('any')
url="https://github.com/beraboris/autotags"
license=('MIT')
groups=()
depends=(bash ctags inotify-tools)
makedepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=(
"https://github.com/beraboris/autotags/archive/v$pkgver.tar.gz"
)
noextract=()
md5sums=('bd6453fd58e01815f68f27d298f0e6d5')
package() {
install -D -m 755 "$srcdir/$pkgname-$pkgver/autotags" \
"$pkgdir/usr/bin/autotags"
install -D -m644 "$srcdir/$pkgname-$pkgver/LICENSE" \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|