aboutsummaryrefslogtreecommitdiffstats
path: root/dist/archlinux/stable/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'dist/archlinux/stable/PKGBUILD')
-rw-r--r--dist/archlinux/stable/PKGBUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/dist/archlinux/stable/PKGBUILD b/dist/archlinux/stable/PKGBUILD
new file mode 100644
index 0000000..67345fa
--- /dev/null
+++ b/dist/archlinux/stable/PKGBUILD
@@ -0,0 +1,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
+}