blob: 67345fa950773bdcedbe9bfd1c736acf935897bc (
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
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=(fff7abc7810eb761b6542f9307898f35)
build() {
cd maandree-${pkgname}-*
make DESTDIR="$pkgdir/"
}
package() {
cd maandree-${pkgname}-*
make DESTDIR="$pkgdir/" install
}
|