summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann_Forget2016-04-16 19:13:22 +0200
committerYann_Forget2016-04-16 19:13:22 +0200
commitfb14b11aa43f6428ce2743f2f79da9c04ab324ab (patch)
treecd581305274572d1bd4d223a6757093fa3e4e7b9
parentba11f71cbfb74f0f5ce8a5226172b022f76caa61 (diff)
downloadaur-fb14b11aa43f6428ce2743f2f79da9c04ab324ab.tar.gz
Corrected License installation
-rw-r--r--PKGBUILD10
1 files changed, 4 insertions, 6 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 1570867f1d4b..558403866d8a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,15 +9,15 @@ license=('custom:"Nasa Open Source Agreement"')
depends=('espa-product-formatter')
provides=('espa-cloud-masking')
conflicts=('espa-cloud-masking')
-source=("https://github.com/USGS-EROS/espa-cloud-masking/archive/cloud-masking-2016_Mar.tar.gz")
+source=('https://github.com/USGS-EROS/espa-cloud-masking/archive/cloud-masking-2016_Mar.tar.gz')
md5sums=('SKIP')
prepare() {
- cd "$srcdir"
+ cd $srcdir
mv "espa-cloud-masking-cloud-masking-2016_Mar" "$pkgname"
- cd "$pkgname"
+ cd $pkgname
- mv cfmask/CFMASK-LICENSE.txt LICENSE
+ mv ./cfmask/CFMASK-LICENSE.txt LICENSE
python_files=$(find -name '*.py')
for file in $python_files
@@ -37,8 +37,6 @@ prepare() {
sed -i -e \
's:static_install_path = $(espa_project_dir)/static_data:static_install_path = $(prefix)/../var/lib/espa/$(project_name)/static_data:g' \
Makefile
-
-
}