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.
 
 

17 lines
472 B

pkgname=cr2fits
pkgver=2.1.0
pkgrel=1
pkgdesc="A script to convert RAW images to FITS images."
url=(https://github.com/eaydin/cr2fits/)
arch=('any')
license=('MIT')
source=(https://github.com/eaydin/cr2fits/blob/master/cr2fits.py)
depends=('python' 'python-pyfits' 'dcraw' 'dolphin')
md5sums=('04924ee6fa2529d57e83603e73516984')
package() {
mkdir -p $pkgdir/usr/bin/
cp $srcdir/$pkgname.py $pkgdir/usr/bin/$pkgname.py
chmod 755 $pkgdir/usr/bin/$pkgname.py
}