summaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorJanusz Kozerski <j.kozerski@samsung.com>2015-05-15 14:11:30 +0200
committerKrzysztof Jackiewicz <k.jackiewicz@samsung.com>2015-05-27 13:20:03 +0200
commite1301082a4c40852dde8500b18bb2f3df88fac8f (patch)
treec7d75759c71082187877437b92afb3caefd8b7b5 /packaging
parentcd3abbff7768fc93a4b7f045fa040ccf0a418e27 (diff)
downloadcert-checker-e1301082a4c40852dde8500b18bb2f3df88fac8f.tar.gz
cert-checker-e1301082a4c40852dde8500b18bb2f3df88fac8f.tar.bz2
cert-checker-e1301082a4c40852dde8500b18bb2f3df88fac8f.zip
Add classes: Logic, App_t. Add journal loging support
Class Logic has only dbus callbacks implemetation (package-manager, connman), beside it it's empty implementation. Verification: 1) Build cert-checker with debug, and install on emulator. 2) Run cert-checker - do it in emulator UI console (not via ssh). 3) On other console in emulator UI run command: journalctl -f | grep cert-checker - to see the logs. 4) On third console turn on and off offline mode on device: /usr/sbin/connmanctl enable offline /usr/sbin/connmanctl disable offline 5) You should see logs from cert-checker in journal 6) Install any app to check if package-manager signal works in cert-checker: pkgcmd -i -t wgt -p /usr/share/widget_demo/go.wgt -q 7) Check if logs are present. Change-Id: Ic7d6fc4f47ca9ced18744ad8a77f8516b75304e3
Diffstat (limited to 'packaging')
-rw-r--r--packaging/cert-checker.spec46
1 files changed, 46 insertions, 0 deletions
diff --git a/packaging/cert-checker.spec b/packaging/cert-checker.spec
new file mode 100644
index 0000000..224e5bf
--- /dev/null
+++ b/packaging/cert-checker.spec
@@ -0,0 +1,46 @@
+Name: cert-checker
+Summary: OCSP checking on application installation
+Version: 0.0.1
+Release: 1
+Group: System/Security
+License: Apache-2.0
+Source0: %{name}-%{version}.tar.gz
+BuildRequires: cmake
+BuildRequires: zip
+BuildRequires: pkgconfig(glib-2.0)
+BuildRequires: pkgconfig(capi-appfw-package-manager)
+BuildRequires: pkgconfig(notification)
+BuildRequires: pkgconfig(dbus-1)
+BuildRequires: pkgconfig(dbus-glib-1)
+BuildRequires: pkgconfig(libsystemd-journal)
+
+%description
+Cert-checker
+
+%prep
+%setup -q
+
+%build
+export CFLAGS="$CFLAGS"
+export CXXFLAGS="$CXXFLAGS"
+export FFLAGS="$FFLAGS"
+export LDFLAGS+="-Wl,--rpath=%{_libdir} "
+
+%cmake . -DVERSION=%{version} \
+ -DCMAKE_BUILD_TYPE=%{?build_type:%build_type}%{!?build_type:RELEASE} \
+ -DCMAKE_VERBOSE_MAKEFILE=ON
+
+make %{?jobs:-j%jobs}
+
+%install
+rm -rf %{buildroot}
+mkdir -p %{buildroot}/usr/share/license
+cp LICENSE %{buildroot}/usr/share/license/%{name}
+%make_install
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%{_bindir}/cert-checker
+%{_datadir}/license/%{name}