summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxim Polishchuck2018-01-20 00:09:38 +0200
committerMaxim Polishchuck2018-01-20 00:09:38 +0200
commit13cc1de2bc5de37188a81db436bcd51fd31b9f29 (patch)
treee96f735e449a0c73417ae8e7a847f9f6e63b4b52
downloadaur-nm-duid.tar.gz
Initial commit
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD16
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..83830be83779
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+# Generated by makepkg 5.0.2
+# Fri Jan 19 22:07:54 UTC 2018
+pkgbase = nm-duid
+ pkgdesc = Small tool to calculate the NetworkManager generated DHCPv6 DUID
+ pkgver = 0.1
+ pkgrel = 1
+ url = https://github.com/mss/nm-duid
+ arch = i686
+ arch = x86_64
+ depends = perl
+ source = git+https://github.com/mss/nm-duid.git#commit=c4304cbf229f6504030ac1327164fe87bf5ca996
+ sha256sums = SKIP
+
+pkgname = nm-duid
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..a4966a11c416
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+pkgname=nm-duid
+pkgver=0.1
+pkgrel=1
+_commit=c4304cbf229f6504030ac1327164fe87bf5ca996
+pkgdesc="Small tool to calculate the NetworkManager generated DHCPv6 DUID"
+arch=('i686' 'x86_64')
+url="https://github.com/mss/nm-duid"
+depends=('perl')
+source=("git+https://github.com/mss/nm-duid.git#commit=$_commit")
+sha256sums=('SKIP')
+
+package() {
+ cd "$srcdir/nm-duid"
+
+ install -Dm755 nm-duid "$pkgdir/usr/bin/nm-duid"
+}