summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorkiv2016-07-19 04:29:40 +0400
committerkiv2016-07-19 04:29:40 +0400
commitfb5f79ffed9c16286f1b5c1ef2ba6f9f53f80301 (patch)
tree8ec9f3d11242314438f00c072246d1a94952046d
downloadaur-fb5f79ffed9c16286f1b5c1ef2ba6f9f53f80301.tar.gz
First commit
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD18
2 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..714c57e5d02c
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = mcu-info-util-git
+ pkgdesc = Small utility for generate C/C++ headers and linker script for some MCUs
+ pkgver = 0.1
+ pkgrel = 1
+ url = https://github.com/KivApple/mcu-info-util
+ arch = any
+ license = custom
+ makedepends = python-setuptools
+ depends = python
+ source = mcu-info-util::git+https://github.com/KivApple/mcu-info-util
+ md5sums = SKIP
+
+pkgname = mcu-info-util-git
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..a77a2d4e7887
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+pkgname=('mcu-info-util-git')
+pkgver=0.1
+pkgrel=1
+pkgdesc='Small utility for generate C/C++ headers and linker script for some MCUs'
+arch=('any')
+url='https://github.com/KivApple/mcu-info-util'
+license=('custom')
+depends=('python')
+makedepends=('python-setuptools')
+source=('mcu-info-util::git+https://github.com/KivApple/mcu-info-util')
+md5sums=('SKIP')
+
+package() {
+ cd mcu-info-util
+ python setup.py bdist
+ cd $pkgdir
+ tar -xzvf $srcdir/mcu-info-util/dist/mcu-info-util-*.tar.gz
+}