mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
820 B
Bash
25 lines
820 B
Bash
# $Id: PKGBUILD 42845 2009-06-18 21:10:21Z tpowa $
|
|
# Maintainer: dale <dale@archlinux.org>
|
|
|
|
# todo: add perl support, DESTDIR has no affect on perl
|
|
# and it seems that moving the files manually doesn't work
|
|
|
|
pkgname=pilot-link
|
|
pkgver=0.12.3
|
|
pkgrel=5
|
|
pkgdesc="A suite of tools for connecting to PalmOS handheld devices"
|
|
arch=(i686 x86_64)
|
|
license=('GPL' 'LGPL')
|
|
depends=('readline>=6.0' 'libpng' 'libusb' 'popt' 'bluez>=4.25')
|
|
options=('!libtool')
|
|
url=http://www.pilot-link.org/
|
|
source=(http://downloads.pilot-link.org/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('257124484d50552679c53cae8e118aa3')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --enable-conduits --enable-libusb \
|
|
--with-libiconv --with-libpng || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|