Created
January 22, 2015 20:56
-
-
Save qgeissmann/e0fa474b99b22ea4d680 to your computer and use it in GitHub Desktop.
RFDuino PKGBUILD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Sergio Correia <[email protected]> | |
pkgname=arduino-rfduino | |
pkgver=2.2.2 | |
pkgrel=2 | |
pkgdesc="A finger-tip sized, Arduino compatible, wireless enabled microcontroller" | |
url="http://www.rfduino.com/" | |
license=('GPL') | |
arch=('i686' 'x86_64') | |
depends=('arduino-beta' 'wine') | |
options=('staticlibs' '!strip') | |
source=(http://www.rfdigital.com/wp-content/uploads/2014/03/RFduino_${pkgver}.zip | |
RFDLoader) | |
md5sums=('7181e035e9d479afdd7e2d776c193cc8' | |
'3f6f644fa891baad1b3045004732d1a2') | |
package() { | |
mkdir -p "${pkgdir}"/usr/share/arduino/hardware/arduino | |
cd "${pkgdir}"/usr/share/arduino/hardware/arduino | |
unzip "${srcdir}"/RFduino_${pkgver}".zip" | |
mv "${pkgdir}"/usr/share/arduino/hardware/arduino/RFduino/RFDLoader "${pkgdir}"/usr/share/arduino/hardware/arduino/RFduino/RFDLoader.old | |
cp "${srcdir}"/RFDLoader "${pkgdir}"/usr/share/arduino/hardware/arduino/RFduino/RFDLoader | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment