summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5560513cef59ad6ec291a1a3383e501a945cc764 (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
31
32
33
34
35
36
37
38
39
40
41
# Maintainer : Nicolas Guillaumin <nicolas plus archlinux at guillaumin dot me>
_perlmod=Device-USB
_modnamespace=Device
pkgname=perl-device-usb
pkgver=0.38
pkgrel=2
pkgdesc="Perl wrapper around the libusb 0.1 library"
arch=(i686 x86_64 armv7h)
url="https://search.cpan.org/dist/$_perlmod"
license=('GPL' 'PerlArtistic')
depends=('perl>=5.10.0' 'libusb-compat')
makedepends=('perl-extutils-makemaker' 'perl-inline-c')
options=('!emptydirs')
source=("https://cpan.perl.org/modules/by-module/$_modnamespace/$_perlmod-$pkgver.tar.gz")
sha256sums=(f0c36379db4913406dc9bd546a6cfd4da20d58f7c2cc085893a2fe67a43465dc)

build() {
  cd "$srcdir/$_perlmod-$pkgver"

  # Fix build issues
  # See: https://rt.cpan.org/Public/Bug/Display.html?id=100852#txn-1446502
  rm -f ./dump_usb.pl USB.pm
  sed -i s/^dump_usb.pl$//g ./MANIFEST
  sed -i s/^USB-.pm$//g ./MANIFEST

  # libusb_ C functions prefix conflicts with libusb-compat
  # See https://rt.cpan.org/Public/Bug/Display.html?id=65908#txn-1123493
  sed -i s/\\blibusb_/wrap_usb_/g ./lib/Device/*.pm ./lib/Device/USB/*.pm ./t/*.t

  # Install module in vendor directories.
  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
  make

}

package() {
  cd "$srcdir/$_perlmod-$pkgver"
  make install DESTDIR="$pkgdir/"
}

# vim:set ts=2 sw=2 et: