diff options
author | Deposite Pirate | 2023-10-20 00:28:11 +0200 |
---|---|---|
committer | Deposite Pirate | 2023-10-20 00:28:11 +0200 |
commit | ba8070b1b291d1aa807a3ef033d6703651473381 (patch) | |
tree | 061b2b04cb845a0afc2bf78bf58bbdd7ef236288 /php7-mailparse/PKGBUILD | |
parent | 8aa092ade8e65529480233ebe7537c9afad4ea78 (diff) |
* Drop php7-mailparse.
deleted: php7-mailparse/.SRCINFO
deleted: php7-mailparse/.gitignore
deleted: php7-mailparse/PKGBUILD
deleted: php7-mailparse/mailparse.ini
deleted: php7-mailparse/package.xml
Diffstat (limited to 'php7-mailparse/PKGBUILD')
-rw-r--r-- | php7-mailparse/PKGBUILD | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/php7-mailparse/PKGBUILD b/php7-mailparse/PKGBUILD deleted file mode 100644 index ce7fd7b..0000000 --- a/php7-mailparse/PKGBUILD +++ /dev/null @@ -1,43 +0,0 @@ -# Maintainer: Thomas Gerbet <thomas at gerbet dot me> -# Contributor: Johannes Schleifenbaum <johannes [at] js-webcoding [dot] de> - -pkgname=php7-mailparse -pkgver=3.1.1 -pkgrel=1 -pkgdesc="Extension for parsing and working with email messages (RFC822 and RFC2045)" -arch=('i686' 'x86_64') -url="https://pecl.php.net/package/mailparse" -license=('PHP') -depends=('php7>=7.2.0') -backup=('etc/php/conf.d/mailparse.ini') -source=("https://pecl.php.net/get/mailparse-${pkgver}.tgz" - 'mailparse.ini') -sha256sums=('c70f2650f81f7e234e5e2c8b079f3db04f38c269cf906c7846242fe9df92ce0a' - 'e3a71ee16492ff486ad4e6b0c87a3af93bdb081efa5baf78d5d47f290f7ec86a') - -build() { - cd "${srcdir}/mailparse-${pkgver}/" - - phpize - ./configure \ - --prefix=/usr \ - --libdir=/usr/lib/php7 \ - --with-php-config="/usr/bin/php-config7" - make -} - -check() { - cd "${srcdir}/mailparse-${pkgver}/" - - export REPORT_EXIT_STATUS=1 - export NO_INTERACTION=1 - export SKIP_ONLINE_TESTS=1 - make test -} - -package() { - cd "${srcdir}/mailparse-${pkgver}/" - - make INSTALL_ROOT="${pkgdir}/" install - install -D -m 644 "$srcdir"/mailparse.ini "$pkgdir"/etc/php7/conf.d/mailparse.ini -} |