🔒 Repository is read-only – file editing is disabled.

recipes/utils/db/PAGBUILD.yaml main

31 linii Raw ← Powrót
12345678910111213141516171819202122232425262728293031
pkgname: db
pkgver: '6.2.32'
pkgrel: '4'
pkgdesc: 'The Berkeley DB embedded database system'
url: 'https://www.oracle.com/technology/software/products/berkeley-db/index.html'
arch: x86_64
depends: []
makedepends: []
source:
- 'https://download.oracle.com/berkeley-db/${pkgname}-${pkgver}.tar.gz'

sha256sums:
- SKIP

build: |
  cd ${pkgname}-${pkgver}
  cd build_unix
  ../dist/configure --prefix=/usr \
  --enable-compat185 \
  --enable-shared \
  --enable-cxx --enable-dbm
  make
  make DESTDIR=${PKGDIR} \
  docdir=/usr/share/doc/${pkgname}-${pkgver} install

  chown -R 0:0 ${PKGDIR}
  chmod -R +w ${PKGDIR}
  rm -f ${PKGDIR}/usr/lib/{libdb-6.2.la,libdb_cxx-6.2.la}

package: |
  true