blob: 5cc653dd7e653de369b6f6b1920546375a3e7363 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
pkgname=sets
pkgver=1.1
pkgrel=1
pkgdesc="The practical way to do set operations on sets of lines in the shell"
arch=('any')
url="https://github.com/maandree/$pkgname"
license=('GPL3')
depends=('python>=3')
provides=($pkgname)
conflicts=($pkgname)
source=($url/tarball/$pkgver)
md5sums=(aa7dd6483f4b781204ea1d346c71d1a5)
build() {
cd maandree-${pkgname}-*
make DESTDIR="$pkgdir/"
}
package() {
cd maandree-${pkgname}-*
make DESTDIR="$pkgdir/" install
}
|