blob: 915f5d959116964c5e97b60bbac5a60395027903 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Maintainer: Thomas Ascher <thomas.ascher@gmx.at>
# Contributor: Thomas Ascher <thomas.ascher@gmx.at>
pkgname=remotedesk.app
_pkgname=RemoteDesk
pkgrel=1
pkgver=0.1
pkgdesc="A remote windows access tool."
arch=('i686' 'x86_64')
url="http://www.nongnu.org/gap/remotedesk/index.html"
license=('GPL')
groups=('gnustep')
depends=('gnustep-base'
'gnustep-gui'
'rdesktop')
makedepends=('gcc-objc'
'gnustep-make')
source=("http://savannah.nongnu.org/download/gap/$_pkgname-$pkgver.tar.gz")
sha256sums=('7d5fd925eef6ca346295de5e39669d8449f0e2d64eb8ece911b222c574b73f36')
build() {
cd "$_pkgname-$pkgver"
export GNUSTEP_MAKEFILES="$(gnustep-config --variable=GNUSTEP_MAKEFILES)"
make
}
package() {
cd "$_pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
install -Dm644 "$pkgdir/usr/lib/GNUstep/Applications/$_pkgname.app/Resources/$_pkgname.desktop" "$pkgdir/usr/share/applications/$_pkgname.desktop"
}
|