mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-15 04:43:01 +01:00
40 lines
908 B
Plaintext
40 lines
908 B
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=series60-remote
|
|
pkgver=0.4.0
|
|
pkgrel=1
|
|
pkgdesc="S60 operating system mobile phone manager"
|
|
url="http://series60-remote.sourceforge.net"
|
|
arch="noarch"
|
|
license="GPL"
|
|
depends="py-qt py-bluez qt-sqlite"
|
|
makedepends=
|
|
install=
|
|
subpackages=
|
|
options="!tracedeps"
|
|
source="http://downloads.sourceforge.net/project/series60-remote/series60-remote/$pkgver/series60-remote-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/series60-remote-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="adc345c3998e594da86c4df150f851e0 series60-remote-0.4.0.tar.gz"
|