forked from SynoCommunity/spksrc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
imapfilter: implement changes suggested in SynoCommunity#3836
Add service-setup script. Change name of downloaded tgz. Fix dependencies of the spk. Add rule to compile on ppc platforms. Remove beta status. Move to diyspk.
- Loading branch information
1 parent
ca33fdf
commit e13a8c6
Showing
5 changed files
with
23 additions
and
7 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
v2.6.16.tar.gz SHA1 390f8e04c4f0b37620199f69ed531ed1bbcf6d7d | ||
v2.6.16.tar.gz SHA256 90af9bc9875e03fb5a09a3233287b74dd817867cb18ec9ff52fead615755563e | ||
v2.6.16.tar.gz MD5 3cb100fd8171c893079f9a969fea6db8 | ||
imapfilter-2.6.16.tar.gz SHA1 390f8e04c4f0b37620199f69ed531ed1bbcf6d7d | ||
imapfilter-2.6.16.tar.gz SHA256 90af9bc9875e03fb5a09a3233287b74dd817867cb18ec9ff52fead615755563e | ||
imapfilter-2.6.16.tar.gz MD5 3cb100fd8171c893079f9a969fea6db8 |
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
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
service_postinst () | ||
{ | ||
ln -s ${SYNOPKG_PKGDEST}/bin/imapfilter /usr/local/bin/imapfilter | ||
ln -s ${SYNOPKG_PKGDEST}/share/imapfilter /usr/local/share/ | ||
} | ||
|
||
service_postuninst () | ||
{ | ||
rm /usr/local/bin/imapfilter | ||
rm /usr/local/share/imapfilter | ||
} |