mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 21:34:38 +08:00
31 lines
850 B
Bash
31 lines
850 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakraos.org
|
|
#
|
|
# maintainer almack
|
|
|
|
pkgname=pilot-link
|
|
pkgver=0.12.5
|
|
pkgrel=6
|
|
pkgdesc="A suite of tools for connecting to PalmOS handheld devices"
|
|
arch=('x86_64')
|
|
license=('GPL' 'LGPL')
|
|
depends=('readline' 'libpng' 'libusb' 'popt' 'bluez-libs')
|
|
url=http://www.pilot-link.org/
|
|
source=("http://slackbuilds.org/mirror/slackware/slackware-13.37/source/l/pilot-link/${pkgname}-${pkgver}.tar.bz2"
|
|
'pilot-link-png14.patch')
|
|
md5sums=('568c55bf504b044f6fbd50baa407c990'
|
|
'a21a2eeb01544a8a261a75e64a3120c3')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
patch -p1 -i "${srcdir}/pilot-link-png14.patch"
|
|
./configure --prefix=/usr --enable-conduits --enable-libusb \
|
|
--with-libiconv --with-libpng
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|