1. # AUR packages should not be built from binaries. This is a workaround.
  2. # If you manage to built this lib32 package from source, let the maintainer know
  3. # and you will be helping the AUR community.
  4.  
  5. _pkgbase=smbclient
  6. pkgname=lib32-${_pkgbase}
  7. pkgver=3.6.10
  8. pkgrel32=1
  9. pkgrel=1
  10. pkgdesc="Tools to access a server's filespace and printers via SMB (32 bits)"
  11. arch=('x86_64')
  12. url="http://www.gnome.org"
  13. depends=('lib32-libcap' 'lib32-krb5' 'lib32-tdb' 'lib32-libwbclient' 'lib32-talloc' "${_pkgbase}")
  14. license=('GPL' 'LGPL')
  15. source=("ftp://ftp.archlinux.org/extra/os/i686/${_pkgbase}-${pkgver}-${pkgrel32}-i686.pkg.tar.xz")
  16. md5sums=('8dec1f1c6134c4456c9fb8b914852201')
  17.  
  18. package() {
  19. mkdir -p "${pkgdir}"/usr/lib32
  20. cp -rPf "${srcdir}"/usr/lib/* "${pkgdir}"/usr/lib32
  21. rm -rf "${pkgdir}"/usr/lib32/cups # not a lib
  22. }