diff options
author | NeoTheFox | 2020-02-09 12:12:44 +0300 |
---|---|---|
committer | NeoTheFox | 2020-02-09 12:12:44 +0300 |
commit | 273aba7d060c12990f379e86f6a2a8ff0fad9de4 (patch) | |
tree | ed48e9a60c80f5affc542853cf73b0d736e940a1 /PKGBUILD | |
parent | 3568980f6a2f0eda1d0b568cec8a93723248f37d (diff) | |
download | aur-273aba7d060c12990f379e86f6a2a8ff0fad9de4.tar.gz |
stop using /opt
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 13 |
1 files changed, 5 insertions, 8 deletions
@@ -1,6 +1,6 @@ pkgname=kisslicer2 pkgver=1.6.2 -pkgrel=1 +pkgrel=2 pkgdesc="KISSlicer is a fast, easy-to-use, cross-platform program that takes 3D files (STL) and generates path information (G-code) for a 3D Printer. The FREE version has all the features needed for the hobbyist who uses a single-head machine. Alpha version of V2" arch=('i686' 'x86_64') url="http://www.kisslicer.com/index.html" @@ -22,8 +22,8 @@ source=( source_i686=('https://www.dropbox.com/sh/78y5ec24yx1ycbk/AAD0c1pyxFRMtSe8CLZxqEqYa/KISSlicer_Linux32_v2_alpha_1.6.2.zip') source_x86_64=('https://www.dropbox.com/sh/78y5ec24yx1ycbk/AACN90y_A2vWZFCj8VZwRl1Oa/KISSlicer_Linux64_v2_alpha_1.6.2.zip') # Checksums -sha256sums=('4530d61c67c1de95c329dc38449e259e290910802813da6944a72256998c5fbb' - '878cc7872f68f4396d3774fde3e3c2b88488dc86db7dcd58eda2ab891c906217' +sha256sums=('7791e651c5ca4850644a98e522741e925d822369d2defe46090f1939c6047216' + '9f6bbb2357f2f81cfeb86f8f114b4e529c9f9f52a551fc5bca16a679ce60245b' '17ec56ab667fc601b5282c8093e795cc65c6c73df25fdafd8ddd96436ea24589' ) sha256sums_i686=('6766e9c4d1f73f4a19a8bc53f58750c7323ae0fd354a5433150d3bfe9954c2f6') @@ -33,12 +33,9 @@ package() { cd "$srcdir/" - # Creating needed directories - install -dm755 "$pkgdir/opt/kisslicer/" - # Program - install -Dm755 "$srcdir/KISSlicer" "$pkgdir/opt/$pkgname/KISSlicer" - install -Dm755 "$srcdir/$pkgname.png" "$pkgdir/opt/$pkgname/KISSlicer.png" + install -Dm755 "$srcdir/KISSlicer" "$pkgdir/usr/bin/$pkgname" + install -Dm644 "$srcdir/$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png" install -Dm755 "$srcdir/$pkgname.sh" "$pkgdir/usr/bin/$pkgname.sh" # Desktop launcher |