aboutsummaryrefslogtreecommitdiff
path: root/PKGBUILD
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-09-03 20:05:14 +0200
committerpml68 <contact@pml68.dev>2025-09-03 20:05:14 +0200
commit480e871e2d32a315d6e27ab50f49fb581fe0dbc2 (patch)
tree6888e7cdc860d02d03084766683963562ac1de9e /PKGBUILD
parentfeat: initial commit (diff)
downloadPKGBUILDs-480e871e2d32a315d6e27ab50f49fb581fe0dbc2.tar.gz
feat: add `aur` package
Diffstat (limited to 'PKGBUILD')
-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"
+}