Created
September 24, 2016 23:37
-
-
Save jacobmischka/22e8b707a5e8ddf58bbe6d45920afb3d to your computer and use it in GitHub Desktop.
ftl-sdk
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
pkgname=ftl-sdk | |
pkgver=20160924 | |
pkgrel=1 | |
license=('MIT') | |
source=('git+https://github.com/WatchBeam/ftl-sdk.git') | |
arch=('any') | |
md5sums=('SKIP') | |
build(){ | |
cd $pkgname | |
mkdir build | |
cd build | |
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr .. | |
make | |
} | |
package(){ | |
cd $pkgname/build | |
make DESTDIR="$pkgdir/" install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment