summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorbegin-theadventure2023-08-25 09:50:01 +0200
committerbegin-theadventure2023-08-25 09:50:01 +0200
commite613d60d339bfef1b8afeb9c379ac675b802b87a (patch)
tree70f0a6a75d8161586036558305ffc5ea1511240e
downloadaur-e613d60d339bfef1b8afeb9c379ac675b802b87a.tar.gz
Initial commit
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD17
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..6804cf0eaa6a
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = yadp-git
+ pkgdesc = Yet Another xDelta Patcher
+ pkgver = 0.0.0
+ pkgrel = 1
+ url = https://github.com/Nhoya/YADP
+ arch = any
+ license = GPL3
+ depends = xdelta3
+ source = https://raw.githubusercontent.com/Nhoya/YADP/master/YADP
+ sha256sums = SKIP
+
+pkgname = yadp-git
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..e400e138b973
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: begin-theadventure <begin-thecontact.ncncb at dralias dot com>
+
+_pkgname=yadp
+pkgname=$_pkgname-git
+pkgver=0.0.0
+pkgrel=1
+pkgdesc='Yet Another xDelta Patcher'
+arch=('any')
+url='https://github.com/Nhoya/YADP'
+license=('GPL3')
+depends=('xdelta3')
+source=("https://raw.githubusercontent.com/Nhoya/YADP/master/YADP")
+sha256sums=('SKIP')
+
+package() {
+ install -Dm755 YADP "$pkgdir/usr/bin/$_pkgname"
+}