aboutsummaryrefslogtreecommitdiffstats
path: root/dist/archlinux/stable/PKGBUILD
blob: e291919dc049806631b79a6c76e256f738d42886 (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=('AGPL3')
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
}