aboutsummaryrefslogtreecommitdiff
path: root/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--PKGBUILD24
1 files changed, 24 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 0000000..6df516f
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,24 @@
+# Maintainer: pml68 <contact@pml68.dev>
+
+pkgname=aur
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='A simple script for AUR package management'
+arch=('any')
+url='https://github.com/pml68/aur'
+license=('MIT')
+depends=(
+ 'bash'
+ 'git'
+)
+options=('!strip' '!debug')
+conflicts=('aur')
+provides=('aur')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pml68/aur/archive/refs/tags/v${pkgver}.tar.gz")
+sha256sums=('7891fd3c8ed5a79c337b8148bd247d181d1372e31ad2c6557a0165a6d7299326')
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="$pkgdir" install
+ install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}