Package Details: libsigcpp1.2 1.2.7-4

Git Clone URL: https://aur.archlinux.org/libsigcpp1.2.git (read-only, click to copy)
Package Base: libsigcpp1.2
Description: A typesafe callback system for standard C++
Upstream URL: http://libsigc.sourceforge.net/
Licenses: LGPL
Submitter: shinlun
Maintainer: lostkhaos
Last Packager: lostkhaos
Votes: 49
Popularity: 0.000000
First Submitted: 2007-06-06 14:13 (UTC)
Last Updated: 2015-11-28 01:40 (UTC)

Latest Comments

lostkhaos commented on 2015-11-28 02:06 (UTC)

Fixed that little build snag

xyproto commented on 2015-10-04 20:21 (UTC)

Disowning due to lack of interest. Please adopt. :)

VirtualTam commented on 2015-09-25 20:24 (UTC)

Hi @xyproto! Could you please update this PKGBUILD?

lupylucke commented on 2015-04-19 21:08 (UTC)

Same problem here... This modified PKGBUILD works: # Contributor: Alexander Rødseth <rodseth@gmail.com> # Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw> pkgname=libsigcpp1.2 pkgver=1.2.7 pkgrel=3 pkgdesc="A typesafe callback system for standard C++" arch=('i686' 'x86_64') url="http://libsigc.sourceforge.net/" license=('LGPL') depends=('glibc') makedepends=('setconf') source=(http://ftp.gnome.org/pub/GNOME/sources/libsigc++/1.2/libsigc++-$pkgver.tar.bz2) md5sums=('212f48536019e1f003d2509b4c9b36df') build() { cd "$srcdir/libsigc++-$pkgver" ./configure --prefix=/usr || return 1 setconf Makefile SUBDIRS "sigc++ doc" make || return 1 } package () { cd "$srcdir/libsigc++-$pkgver" make DESTDIR="$pkgdir/" install || return 1 find "$pkgdir" -name "*.la" -exec rm {} + install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING }

eduardomezencio commented on 2015-01-10 16:16 (UTC)

When I run makepkg on this, it says it's missing the package() function and don't do anything. I just edited the PKGBUILD and changed build() to package() and it worked alright. I'm not a packager, so I don't know if it's the right thing to do, but it worked.