Created
November 22, 2015 01:47
-
-
Save ShalokShalom/4ca9125e4a78c6901bf1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=mailpile-git | |
pkgver=0.5.2 | |
pkgrel=1 | |
pkgdesc="A modern, fast web-mail client with user-friendly encryption and privacy features." | |
arch=('x86_64') | |
license=('AGPL3') | |
depends=('python2-pillow' 'python2-lxml' 'python2-jinja' 'spambayes' 'python2-pgpdump') | |
url="http://www.mailpile.is" | |
provides=("mailpile") | |
conflicts=("mailpile") | |
source=('git://github.com/pagekite/Mailpile.git') | |
md5sums=('SKIP') | |
pkgver() { | |
cd "${srcdir}/Mailpile" | |
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" | |
} | |
build() { | |
cd "${srcdir}/Mailpile" | |
# python2 fixes | |
find . -type f -exec sed -i 's^bin/python^bin/python2^g' {} \; | |
sed -i 's^python ^python2 ^g' Makefile | |
# Set absolute paths for static files | |
sed -i "s^('static/^('/usr/share/mailpile/static/^g" mailpile/config.py | |
sed -i "s^'static/^'/usr/share/mailpile/static/^g" mailpile/defaults.py | |
sed -i '/os.path.dirname( # scripts/d' mp | |
sed -i 's^__file__))^"/usr/share/mailpile/mailpile")^g' mp | |
# Compile bytecode | |
printf '#!/bin/env python2\nimport compileall\ncompileall.compile_dir("mailpile", force=1)' > compile.py | |
chmod +x compile.py | |
./compile.py | |
} | |
package() { | |
mkdir -p "${pkgdir}/usr/bin" | |
mkdir -p "${pkgdir}/usr/share/mailpile" | |
cp -r "${srcdir}/Mailpile/static" "${pkgdir}/usr/share/mailpile/static" | |
cp -r "${srcdir}/Mailpile/mailpile" "${pkgdir}/usr/share/mailpile/" | |
cp -r "${srcdir}/Mailpile/locale" "${pkgdir}/usr/share/mailpile/" | |
cp "${srcdir}/Mailpile/mp" "${pkgdir}/usr/bin/" | |
find "${pkgdir}/usr" -type f -exec chmod 644 {} \; | |
find "${pkgdir}/usr" -type d -exec chmod 755 {} \; | |
chmod 755 "${pkgdir}/usr/bin/mp" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment