Skip to content
Snippets Groups Projects
Verified Commit 02f264b8 authored by Antonio Rojas's avatar Antonio Rojas
Browse files

upgpkg: 1.10.0-1: New xsd dependency

parents
No related branches found
Tags 1.10.0-1
No related merge requests found
.SRCINFO 0 → 100644
pkgbase = libcutl
pkgdesc = A C++ utility library
pkgver = 1.10.0
pkgrel = 1
url = https://www.codesynthesis.com/projects/libcutl/
arch = x86_64
license = MIT
depends = gcc-libs
depends = glibc
source = https://www.codesynthesis.com/download/libcutl/1.10/libcutl-1.10.0.tar.gz
sha256sums = bdee4b10ce621f18ec91e9ba63d539a2d74542a1d443e0e3f819861ab689d2f6
pkgname = libcutl
PKGBUILD 0 → 100644
# Maintainer: Antonio Rojas <arojas@archlinux.org>
pkgname=libcutl
pkgver=1.10.0
pkgrel=1
pkgdesc='A C++ utility library'
arch=(x86_64)
url='https://www.codesynthesis.com/projects/libcutl/'
license=(MIT)
makedepends=()
depends=(gcc-libs
glibc)
source=(https://www.codesynthesis.com/download/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.gz)
sha256sums=('bdee4b10ce621f18ec91e9ba63d539a2d74542a1d443e0e3f819861ab689d2f6')
build() {
cd $pkgname-$pkgver
CXXFLAGS+=" -std=c++14" \
./configure \
--prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment