2018-07-14 13:02:53 +00:00
|
|
|
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
|
|
|
|
# Contributor: Dan McGee <dan@archlinux.org>
|
|
|
|
# Contributor: Michael Irwin <6d6469@gmail.com>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - remove depend on libseccomp, don't configure with --enable-seccomp; problematic on ARM
|
|
|
|
|
|
|
|
pkgname=memcached
|
2023-09-23 16:20:41 +00:00
|
|
|
pkgver=1.6.21
|
2020-03-15 22:50:16 +00:00
|
|
|
pkgrel=1
|
2018-07-14 13:02:53 +00:00
|
|
|
pkgdesc='Distributed memory object caching system'
|
|
|
|
url='https://memcached.org/'
|
|
|
|
arch=('x86_64')
|
|
|
|
license=('GPL')
|
2021-03-25 22:55:34 +00:00
|
|
|
depends=('glibc' 'libevent')
|
2018-07-14 13:02:53 +00:00
|
|
|
optdepends=('perl: for memcached-tool usage')
|
|
|
|
source=(https://www.memcached.org/files/${pkgname}-${pkgver}.tar.gz
|
2019-01-04 00:33:17 +00:00
|
|
|
memcached.service.patch
|
2018-07-14 13:02:53 +00:00
|
|
|
memcached.tmpfiles
|
2023-05-05 23:26:20 +00:00
|
|
|
memcached.sysusers
|
|
|
|
0001-tests-enable-drop_privileges-by-default-for-better-s.patch
|
|
|
|
0001-seccomp-extend-syscalls-tested-on-Linux-6.1-with-gli.patch)
|
2023-09-23 16:20:41 +00:00
|
|
|
sha512sums=('9d8ba8964474e7ed40095e414747a3ce76860ee32b9d8bac19fc7932a79d4bb9947e4cbe810933b6d271f4b0ee5576e25089ca40f414b25faf9245733bfbd369'
|
2019-01-11 00:46:26 +00:00
|
|
|
'dd21f49062054c601469f9abc9ee39a0f06c604e8805e7bc9bf2cfa65429962f93e7ac67764257c578fc15b1e75394956f350162c99b084c76a6e14d9331f31f'
|
2018-07-14 13:02:53 +00:00
|
|
|
'960705ff74d25afed477e0b2a5872a3a4fb49ed3105a351f0d0224abc947778f9dbda81e80be94ab636da4a8411a9dd56a8fd4513e5b86a3096a14fa67f1548b'
|
2023-05-05 23:26:20 +00:00
|
|
|
'e6ddcab9a6fee024072b6363ef60aa176ed258369bf3a17d475f19b1f410ffd6195b9c5737dc5b1371e8974b44bdbdaa109927acaeb54fb40302a5d67d7c13a8'
|
|
|
|
'5da2a4fb0cdaefe9527dec67e01d881161c49a1593f11ddccf28fb55cbc25fe841ea8eca8a50387e2fef5bc304f12a5c9af4909543eafc0f8865dea39f9e8355'
|
|
|
|
'8d2518507cf843202dc90c10f6fce3c3fc9b41c7aaf10ff0b862c31d30bbbec7de92f9be0327ea3e58e77e29ae2a12b2f47370502bbddc04324f394cfdd7d4a8')
|
2018-07-14 13:02:53 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
2023-05-05 23:26:20 +00:00
|
|
|
patch -Np1 < ../0001-seccomp-extend-syscalls-tested-on-Linux-6.1-with-gli.patch
|
|
|
|
patch -Np1 < ../0001-tests-enable-drop_privileges-by-default-for-better-s.patch
|
2019-01-04 00:33:17 +00:00
|
|
|
patch -Np1 < ../memcached.service.patch
|
|
|
|
sed -e 's/^##safer##//g' -i scripts/*.service
|
2018-07-14 13:02:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make test
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install
|
2019-01-04 00:33:17 +00:00
|
|
|
|
2018-07-14 13:02:53 +00:00
|
|
|
install -Dm 755 scripts/memcached-tool -t "${pkgdir}/usr/bin"
|
2019-01-04 00:33:17 +00:00
|
|
|
install -Dm 644 scripts/memcached-tool.1 -t "${pkgdir}/usr/share/man/man1"
|
|
|
|
|
|
|
|
install -Dm 644 scripts/*.service -t "${pkgdir}/usr/lib/systemd/system"
|
2018-07-14 13:02:53 +00:00
|
|
|
install -Dm 644 ../memcached.tmpfiles "${pkgdir}/usr/lib/tmpfiles.d/memcached.conf"
|
|
|
|
install -Dm 644 ../memcached.sysusers "${pkgdir}/usr/lib/sysusers.d/memcached.conf"
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim: ts=2 sw=2 et:
|