Various compilation scripts & patches for Linux programs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
758 B

  1. pkgname=magiclantern-bootablecard
  2. pkgver=1
  3. pkgrel=1
  4. pkgdesc='Create a Magic Lantern compatible SD card for Canon EOS cameras (boot flag).'
  5. arch=('i686' 'x86_64')
  6. license=('GPL')
  7. url='https://bitbucket.org/hudson/magic-lantern/src/tip/contrib/make-bootable/'
  8. depends=('exfat-dkms-git' 'coreutils' 'exfat-utils-nofuse' 'util-linux')
  9. makedepends=('gcc')
  10. source=(magiclantern-bootablecard.tar.gz)
  11. md5sums=('50a78cd16d2d05b78c0273fe53a59236')
  12. build() {
  13. gcc exfat_sum.c -I$srcdir/modules/lua/dietlibc/include/ -o $srcdir/exfat_sum
  14. }
  15. package() {
  16. mkdir -p $pkgdir/usr/bin/
  17. install -m755 $srcdir/{make_bootable.sh,exfat_sum} $pkgdir/usr/bin/
  18. mv $pkgdir/usr/bin/make_bootable.sh $pkgdir/usr/bin/ml-bootablecard
  19. chmod +x $pkgdir/usr/bin/ml-bootablecard
  20. }