summaryrefslogtreecommitdiff
path: root/community/stlink
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-02-22 03:50:02 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-02-22 03:50:02 +0000
commitd681aef185938981d5b5eb582d09fbc49927cf24 (patch)
treeadbebafcefcedb7b35b765eb8bc451eac8482d32 /community/stlink
parent96cf9235f114b8d960c16a8625937b16979ae1aa (diff)
Sat Feb 22 03:44:10 UTC 2014
Diffstat (limited to 'community/stlink')
-rw-r--r--community/stlink/PKGBUILD34
-rw-r--r--community/stlink/stlink.install23
2 files changed, 57 insertions, 0 deletions
diff --git a/community/stlink/PKGBUILD b/community/stlink/PKGBUILD
new file mode 100644
index 000000000..8104d73c0
--- /dev/null
+++ b/community/stlink/PKGBUILD
@@ -0,0 +1,34 @@
+# Maintainer: Anatol Pomozov <anatol.pomozov@gmail.com>
+
+pkgname=stlink
+pkgrel=1
+pkgver=1.0.0
+pkgdesc='Firtmware programmer for STM32 STLINK v1/v2 protocol'
+arch=(i686 x86_64)
+url='https://github.com/texane/stlink'
+license=(BSD)
+depends=(libusb)
+install=stlink.install
+source=(https://github.com/texane/stlink/archive/$pkgver.zip)
+sha256sums=('09e676948adda9fd354d0a07584ad5884bc7f8e36ddb6b2f39b2211056b7263a')
+
+build() {
+ cd stlink-$pkgver
+ ./autogen.sh
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd stlink-$pkgver
+
+ # install binaries
+ make DESTDIR="$pkgdir" install
+
+ # install additional files
+ install -Dm644 stlink_v1.modprobe.conf "$pkgdir"/etc/modprobe.d/stlink_v1.modprobe.conf
+ install -Dm644 49-stlinkv1.rules "$pkgdir"/etc/udev/rules.d/49-stlinkv1.rules
+ install -Dm644 49-stlinkv2.rules "$pkgdir"/etc/udev/rules.d/49-stlinkv2.rules
+ install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+ install -Dm644 README "$pkgdir"/usr/share/doc/$pkgname/README
+}
diff --git a/community/stlink/stlink.install b/community/stlink/stlink.install
new file mode 100644
index 000000000..c1dec8388
--- /dev/null
+++ b/community/stlink/stlink.install
@@ -0,0 +1,23 @@
+msg() {
+# modprobe -r usb-storage && modprobe usb-storage
+ udevadm control --reload-rules
+ echo "You may have to reload the usb-storage module."
+ echo "To do this use"
+ echo " modprobe -r usb-storage && modprobe usb-storage"
+}
+
+# arg 1: the new package version
+post_install() {
+ msg
+}
+
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+ msg
+}
+
+# arg 1: the old package version
+post_remove() {
+ msg
+}