diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-09-04 20:53:47 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-09-04 20:53:47 -0300 |
commit | 5d5743d3c03e9fe93ac8bfb2eb7ea1724113ecc0 (patch) | |
tree | de2a3fefaa388eafc7beb4b61921bed67736abbd /libre/bogofilter | |
parent | 854fa7804ff809a4d47d5c7d22d368c88b351591 (diff) | |
download | abslibre-5d5743d3c03e9fe93ac8bfb2eb7ea1724113ecc0.tar.gz abslibre-5d5743d3c03e9fe93ac8bfb2eb7ea1724113ecc0.tar.bz2 abslibre-5d5743d3c03e9fe93ac8bfb2eb7ea1724113ecc0.zip |
bogofilter: fix pkgname
Diffstat (limited to 'libre/bogofilter')
-rw-r--r-- | libre/bogofilter/PKGBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libre/bogofilter/PKGBUILD b/libre/bogofilter/PKGBUILD index 4ab5f7c66..03333dcb3 100644 --- a/libre/bogofilter/PKGBUILD +++ b/libre/bogofilter/PKGBUILD @@ -29,7 +29,7 @@ mksource() { } build() { - cd ${_pkgname}-${pkgver} + cd ${pkgname}-${pkgver} ./configure --prefix=/usr \ --sysconfdir=/etc/$pkgname \ @@ -39,7 +39,7 @@ build() { } package() { - cd ${_pkgname}-${pkgver} + cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install mv "${pkgdir}/etc/$pkgname/$pkgname.cf.example" "${pkgdir}/etc/$pkgname/$pkgname.cf" |