blob: 88e0872fb5a6593b58a65d9cc50bd8a3f840d33d (
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
32
33
|
# Maintainer: Andreas Grapentin <andreas@grapentin.org>
# Contributor (AUR): willemw <willemw12@gmail.com>
# Contributor (AUR): gnomeye <gnomeye at gmail dot com>
_name=ts
pkgname=task-spooler
pkgver=1.0
pkgrel=1
arch=('i686' 'x86_64' 'armv7h')
license=('GPL')
url="http://vicerveza.homeunix.net/~viric/soft/ts/"
pkgdesc="Queue up tasks from the shell for batch execution"
source=(http://vicerveza.homeunix.net/~viric/soft/$_name/$_name-$pkgver.tar.gz)
sha256sums=('4f53e34fff0bb24caaa44cdf7598fd02f3e5fa7cacaea43fa0d081d03ffbb395')
build() {
cd $_name-$pkgver
make
}
package() {
cd $_name-$pkgver
#make PREFIX="$pkgdir/" install
install -Dm755 ts "$pkgdir/usr/bin/tsp"
install -Dm644 ts.1 "$pkgdir/usr/share/man/man1/tsp.1"
}
|