27 lines
875 B
Bash
27 lines
875 B
Bash
# Maintainer: George Angelopoulos <george@usermod.net>
|
|
pkgname=fadein
|
|
pkgver=4.1.1
|
|
pkgrel=1
|
|
pkgdesc="Professional screenwriting software (DEMO)"
|
|
arch=('x86_64')
|
|
url="http://www.fadeinpro.com/"
|
|
# No license file is provided.
|
|
license=('custom')
|
|
depends=('gtk2')
|
|
source=("$pkgname-$pkgver.tar.gz::http://www.fadeinpro.com/download/demo/fadein-linux-amd64-demo.tar.gz")
|
|
sha512sums=('e792611841485fa50eb446b10c15e99dedb1c45e76792d7d7de0917ed68e8ff47a78e17a09cdc55f389d6fce2f5286c97bd388d9c273efcd821324282f160bce')
|
|
|
|
_vendor_name="fadein-linux-amd64"
|
|
|
|
|
|
package() {
|
|
cd "$_vendor_name-$pkgver"
|
|
|
|
install -d ${pkgdir}/usr/share/
|
|
cp -R usr/share/fadein ${pkgdir}/usr/share/
|
|
|
|
install -Dm644 usr/share/applications/fadein.desktop ${pkgdir}/usr/share/applications/fadein.desktop
|
|
|
|
install -d ${pkgdir}/usr/bin/
|
|
ln -s /usr/share/fadein/fadein ${pkgdir}/usr/bin/fadein
|
|
}
|