12345678910111213141516171819202122232425262728293031323334 |
- # Tanım: Mutt paketi bir posta kullanıcı aracısı içerir.
- # URL: http://www.neomutt.org/
- # Paketçi: milisarge
- # Gerekler:
- # Grup: ağ
- isim=neomutt
- surum=20171013
- devir=1
- kaynak=(https://github.com/$isim/$isim/archive/$isim-$surum.tar.gz)
- derle() {
- cd $isim-$isim-$surum
- ./prepare \
- --prefix=/usr \
- --with-docdir=/usr/share/doc/$isim \
- --with-mailpath=/var/spool/mail \
- --enable-pop \
- --enable-imap \
- --enable-smtp \
- --enable-hcache \
- --enable-sidebar \
- --enable-compressed \
- --with-ssl \
- --enable-hcache \
- --disable-nls \
- --with-regex \
- --with-gdbm
- make
- make DESTDIR=$PKG install
- }
|