Package Details: etl-git r8165.bd7d8b2cc-1

Git Clone URL: https://aur.archlinux.org/etl-git.git (read-only, click to copy)
Package Base: etl-git
Description: VoriaETL: C++ STL complementory multiplatform template library
Upstream URL: http://synfig.org
Licenses: GPL2
Conflicts: etl, synfig-etl
Provides: etl
Replaces: synfig-etl
Submitter: piernov
Maintainer: None
Last Packager: piernov
Votes: 2
Popularity: 0.000000
First Submitted: 2017-04-09 11:30 (UTC)
Last Updated: 2017-04-09 11:30 (UTC)

Dependencies (0)

Required by (2)

Sources (1)

Latest Comments

ice0 commented on 2020-03-20 07:27 (UTC) (edited on 2020-03-20 07:30 (UTC) by ice0)

Hi! Can you please update the PKGBUILD? Here is the fixed one:

# Maintainer: piernov <piernov@piernov.org>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Franco Iacomella <yaco@gnu.org>

pkgname=etl-git
pkgver=r9839.2dbc76041
pkgrel=1
pkgdesc="VoriaETL: C++ STL complementory multiplatform template library"
arch=(any)
url="https://synfig.org"
license=('GPL3')
depends=()
conflicts=('synfig' 'etl')
replaces=('etl')
provides=('etl-git')
source=(git+https://github.com/synfig/synfig)
md5sums=('SKIP')

pkgver() {
  cd "$srcdir"/synfig/ETL
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
  cd "$srcdir"/synfig/ETL
  autoreconf -fi
}

build() {
  cd "$srcdir"/synfig/ETL
  ./configure --prefix=/usr
  make
}

package() {
  cd "$srcdir"/synfig/ETL
  make DESTDIR="$pkgdir" install
}