summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorXyne2017-03-04 02:08:10 +0000
committerXyne2017-03-04 02:08:10 +0000
commit3ed10b311b32d0d54353091b8dcea492b6765c05 (patch)
tree9518d172ed6a4ccc4b5a7730b1d3a52f714104b9
downloadaur-3ed10b311b32d0d54353091b8dcea492b6765c05.tar.gz
Initialized.
-rw-r--r--.SRCINFO19
-rw-r--r--PKGBUILD30
2 files changed, 49 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..0f5cd481acff
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,19 @@
+# Generated by mksrcinfo v8
+# Sat Mar 4 02:08:10 UTC 2017
+pkgbase = rmdupes
+ pkgdesc = Command-line tool to find and remove duplicate files.
+ pkgver = 2017
+ pkgrel = 1
+ url = http://xyne.archlinux.ca/projects/rmdupes
+ arch = any
+ license = GPL
+ depends = python3
+ source = http://xyne.archlinux.ca/projects/rmdupes/src/rmdupes-2017.tar.xz
+ source = http://xyne.archlinux.ca/projects/rmdupes/src/rmdupes-2017.tar.xz.sig
+ md5sums = f365a62af5143c1a9eeba2007104e620
+ md5sums = 2c684f88a7c79fefe1ed7cf34270402b
+ sha512sums = fabf06cc4ba6aa2a1adc67b1ef21b5669d8032e6cece7b5876cee81a423a076dd4d0bb794e62a5cd9a9f7637ff86f090d004ae1c30c2462cf8bbb3feac4d336d
+ sha512sums = 7b5d7b8e162629bd14044e5f869b2a0e801bb4e40ae5a5cb741f3cf899870669d75b7133177953aec0de3645bfd1f481e4b16d982a6db52a5d147c99406158e7
+
+pkgname = rmdupes
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..df340c0b841e
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,30 @@
+#Maintainer: Xyne <ac xunilhcra enyx, backwards>
+pkgname=rmdupes
+pkgver=2017
+pkgrel=1
+pkgdesc='Command-line tool to find and remove duplicate files.'
+arch=(any)
+license=(GPL)
+url="http://xyne.archlinux.ca/projects/rmdupes"
+depends=(python3)
+source=(
+ http://xyne.archlinux.ca/projects/rmdupes/src/rmdupes-2017.tar.xz
+ http://xyne.archlinux.ca/projects/rmdupes/src/rmdupes-2017.tar.xz.sig
+)
+sha512sums=(
+ fabf06cc4ba6aa2a1adc67b1ef21b5669d8032e6cece7b5876cee81a423a076dd4d0bb794e62a5cd9a9f7637ff86f090d004ae1c30c2462cf8bbb3feac4d336d
+ 7b5d7b8e162629bd14044e5f869b2a0e801bb4e40ae5a5cb741f3cf899870669d75b7133177953aec0de3645bfd1f481e4b16d982a6db52a5d147c99406158e7
+)
+md5sums=(
+ f365a62af5143c1a9eeba2007104e620
+ 2c684f88a7c79fefe1ed7cf34270402b
+)
+validpgpkeys=('EC3CBE7F607D11E663149E811D1F0DC78F173680')
+
+package ()
+{
+ install -Dm755 "$srcdir/$pkgname-$pkgver/$pkgname" "$pkgdir/usr/bin/$pkgname"
+}
+
+
+# vim: set ts=2 sw=2 et: