43 lines
1.6 KiB
Bash
43 lines
1.6 KiB
Bash
# Template file for 'passwordwsafe'
|
|
pkgname=passwordsafe
|
|
version="1.00BETA"
|
|
revision=1
|
|
wrksrc="pwsafe-${version}"
|
|
build_style=cmake
|
|
configure_args="-D wxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-3.0"
|
|
# build process uses perl to generate core_st.cpp and zip to generate help files
|
|
hostmakedepends="perl wxWidgets-devel zip pkg-config gettext"
|
|
makedepends="wxWidgets-devel libXt-devel libXtst-devel libxerces-c-devel libuuid-devel libykpers-devel gtest-devel"
|
|
short_desc="Simple & Secure Password Management"
|
|
maintainer="Rui Abreu Ferreira <raf-ep@gmx.com>"
|
|
license="Artistic-2.0"
|
|
homepage="http://pwsafe.org"
|
|
distfiles="https://github.com/pwsafe/pwsafe/archive/${version}.tar.gz>pwsafe-${version}.tar.gz"
|
|
checksum=e01c62be5f9a80910e61b7b39dc834ffab3e6a9946795312b1df487bc5a5f0bc
|
|
# wxWidgets is nocross
|
|
nocross=yes
|
|
|
|
do_install() {
|
|
# use 'passwordsafe' in filenames as much as possible.
|
|
vbin build/pwsafe passwordsafe
|
|
vinstall install/desktop/pwsafe.desktop 644 usr/share/applications passwordsafe.desktop
|
|
vinstall install/graphics/pwsafe.png 644 usr/share/icons/hicolor/48x48/apps passwordsafe.png
|
|
sed -i -e 's,^\(Exec\|Icon\)=.*,\1=passwordsafe,' ${DESTDIR}/usr/share/applications/passwordsafe.desktop
|
|
|
|
# Help files
|
|
for f in build/help/help*.zip; do
|
|
vinstall $f 644 usr/share/${pkgname}/help
|
|
done
|
|
|
|
# XML files (format converters)
|
|
vcopy xml usr/share/${pkgname}
|
|
|
|
vlicense LICENSE
|
|
vdoc docs/config.txt
|
|
vman docs/pwsafe.1 passwordsafe.1
|
|
|
|
# locales
|
|
# NB: correspoding locales have to be enabled in /etc/default/libc-locales
|
|
vmkdir usr/share/locale
|
|
vcopy build/src/ui/wxWidgets/I18N/mos/* usr/share/locale
|
|
}
|