summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorloh.tar2017-10-14 10:06:29 +0200
committerloh.tar2017-10-14 10:06:29 +0200
commit2fa1d6582bb0306de2e1cdf721f041fc10ec17e1 (patch)
tree2de89bf7024ff1ca5b8d9c970e3f5ebdd1f1a488
downloadaur-2fa1d6582bb0306de2e1cdf721f041fc10ec17e1.tar.gz
Hello Arch-World!
-rw-r--r--.SRCINFO15
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD16
3 files changed, 35 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..1c63351975a7
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+# Generated by mksrcinfo v8
+# Sat Oct 14 07:31:54 UTC 2017
+pkgbase = dupfi
+ pkgdesc = Duplicate Finder - A pure shell script to find identical files across your drives
+ pkgver = 0.1
+ pkgrel = 1
+ url = https://github.com/loh-tar/dupfi
+ arch = any
+ license = GPL
+ depends = dash
+ source = dupfi-0.1.tar.gz::https://github.com/loh-tar/dupfi/archive/v0.1.tar.gz
+ md5sums = 23ba8c51896fa29461143d204719f56b
+
+pkgname = dupfi
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..6ae0b18a1f6c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+/pkg
+/src
+*.tar.gz
+*.tar.xz
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..7ec5e002523b
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: loh.tar <loh.tar at googlemail dot com>
+pkgname='dupfi'
+pkgver='0.1'
+pkgrel='1'
+pkgdesc='Duplicate Finder - A pure shell script to find identical files across your drives'
+arch=('any')
+url='https://github.com/loh-tar/dupfi'
+license=('GPL')
+depends=('dash')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/loh-tar/$pkgname/archive/v$pkgver.tar.gz")
+md5sums=('23ba8c51896fa29461143d204719f56b')
+
+package() {
+ cd "$pkgname-$pkgver"
+ install -pDm755 -t $pkgdir/usr/bin dupfi
+}