Browse code

Add more ostree dependencies.

Touseef Liaqat authored on 2015/06/09 21:05:35
Showing 4 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,39 @@
0
+Summary:    AsciiDoc is a human readable text document format
1
+Name:       asciidoc
2
+Version:    8.6.9
3
+Release:    1
4
+License:    GPLv2
5
+URL:        http://asciidoc.org/
6
+Group:      System Environment/Development
7
+Vendor:     VMware, Inc.
8
+Distribution:   Photon
9
+Source0:    http://sourceforge.net/projects/asciidoc/files/asciidoc/%{version}/%{name}-%{version}.tar.gz
10
+
11
+%description
12
+AsciiDoc is a human readable text document format that can be easily converted to other document formats.
13
+
14
+%prep
15
+%setup -q
16
+
17
+%build
18
+export CFLAGS="%{optflags}"
19
+./configure  --prefix=%{_prefix}
20
+
21
+make %{?_smp_mflags}
22
+
23
+%install
24
+rm -rf %{buildroot}%{_infodir}
25
+make DESTDIR=%{buildroot} install
26
+
27
+%post   -p /sbin/ldconfig
28
+%postun -p /sbin/ldconfig
29
+
30
+%files
31
+%defattr(-,root,root)
32
+/usr/bin/*
33
+/usr/etc/*
34
+/usr/share/man/*
35
+
36
+%changelog
37
+*   Fri Jun 5 2015 Touseef Liaqat <tliaqat@vmware.com> 8.6.9-1
38
+-   Initial build.  First version
0 39
\ No newline at end of file
1 40
new file mode 100644
... ...
@@ -0,0 +1,40 @@
0
+Summary:    Multi-format archive and compression library
1
+Name:       libarchive
2
+Version:    3.1.2
3
+Release:    1
4
+License:    BSD 2-Clause License
5
+URL:        http://www.libarchive.org/
6
+Group:      System Environment/Development
7
+Vendor:     VMware, Inc.
8
+Distribution:   Photon
9
+Source0:    http://www.libarchive.org/downloads/%{name}-%{version}.tar.gz
10
+
11
+%description
12
+Multi-format archive and compression library
13
+
14
+%prep
15
+%setup -q
16
+
17
+%build
18
+export CFLAGS="%{optflags}"
19
+./configure  --prefix=%{_prefix}
20
+
21
+make %{?_smp_mflags}
22
+
23
+%install
24
+rm -rf %{buildroot}%{_infodir}
25
+make DESTDIR=%{buildroot} install
26
+
27
+%post   -p /sbin/ldconfig
28
+%postun -p /sbin/ldconfig
29
+
30
+%files
31
+%defattr(-,root,root)
32
+/usr/lib/*
33
+/usr/bin/*
34
+/usr/share/man/*
35
+/usr/include/*
36
+
37
+%changelog
38
+*   Fri Jun 5 2015 Touseef Liaqat <tliaqat@vmware.com> 3.1.2-1
39
+-   Initial build.  First version
0 40
\ No newline at end of file
1 41
new file mode 100644
... ...
@@ -0,0 +1,78 @@
0
+Summary:    libsoup HTTP client/server library
1
+Name:       libsoup
2
+Version:    2.50.0
3
+Release:    1
4
+License:    GPLv2
5
+URL:        http://wiki.gnome.org/LibSoup
6
+Group:      System Environment/Development
7
+Vendor:     VMware, Inc.
8
+Distribution:   Photon
9
+Source0:    http://ftp.gnome.org/pub/GNOME/sources/libsoup/2.50/%{name}-%{version}.tar.xz
10
+BuildRequires:   glib
11
+BuildRequires:   glib-devel
12
+BuildRequires:   gobject-introspection
13
+BuildRequires:   libxml2-devel
14
+BuildRequires:   intltool
15
+BuildRequires:   python2
16
+BuildRequires:   python2-libs
17
+BuildRequires:   python2-devel
18
+BuildRequires:   python2-tools
19
+
20
+%description
21
+libsoup is HTTP client/server library for GNOME
22
+
23
+%package devel
24
+Summary: Header files for libsoup
25
+Group: System Environment/Development
26
+Requires: libsoup
27
+%description devel
28
+Header files for libsoup.
29
+
30
+%package doc
31
+Summary: gtk-doc files for libsoup
32
+Group: System Environment/Development
33
+Requires: libsoup
34
+%description doc
35
+gtk-doc files for libsoup.
36
+
37
+%package lang
38
+Summary: Additional language files for libsoup
39
+Group: System Environment/Development
40
+Requires: libsoup
41
+%description lang
42
+These are the additional language files of libsoup.
43
+
44
+%prep
45
+%setup -q
46
+
47
+%build
48
+export CFLAGS="%{optflags}"
49
+./configure  --prefix=%{_prefix} \
50
+    --disable-tls-check
51
+
52
+make %{?_smp_mflags}
53
+
54
+%install
55
+rm -rf %{buildroot}%{_infodir}
56
+make DESTDIR=%{buildroot} install
57
+%find_lang %{name}
58
+
59
+%post   -p /sbin/ldconfig
60
+%postun -p /sbin/ldconfig
61
+
62
+%files
63
+%defattr(-,root,root)
64
+/usr/lib/*
65
+
66
+%files devel
67
+/usr/include/*
68
+
69
+%files doc
70
+/usr/share/*
71
+
72
+%files lang -f %{name}.lang
73
+%defattr(-,root,root)
74
+
75
+%changelog
76
+*   Fri Jun 5 2015 Touseef Liaqat <tliaqat@vmware.com> 2.50.0-1
77
+-   Initial build.  First version
0 78
\ No newline at end of file
1 79
new file mode 100644
... ...
@@ -0,0 +1,45 @@
0
+Summary:    Modular initramfs image creation utility
1
+Name:       mkinitcpio
2
+Version:    18
3
+Release:    1
4
+License:    GPLv2
5
+URL:        https://projects.archlinux.org/mkinitcpio.git/
6
+Group:      System Environment/Development
7
+Vendor:     VMware, Inc.
8
+Distribution:   Photon
9
+Source0:    https://projects.archlinux.org/mkinitcpio.git/snapshot/%{name}-%{version}.tar.gz
10
+BuildRequires: asciidoc
11
+BuildRequires: python2-libs
12
+BuildRequires: docbook-xsl
13
+BuildRequires: libxml2-devel
14
+BuildRequires: libxslt
15
+
16
+%description
17
+Multi-format archive and compression library
18
+
19
+%prep
20
+%setup -q
21
+
22
+%build
23
+
24
+sed -i "s/a2x/a2x --verbose --no-xmllint/" Makefile
25
+
26
+make %{?_smp_mflags}
27
+
28
+%install
29
+rm -rf %{buildroot}%{_infodir}
30
+make DESTDIR=%{buildroot} install
31
+
32
+%post   -p /sbin/ldconfig
33
+%postun -p /sbin/ldconfig
34
+
35
+%files
36
+%defattr(-,root,root)
37
+/usr/lib/*
38
+/usr/bin/*
39
+/etc/*
40
+/usr/share/*
41
+
42
+%changelog
43
+*   Fri Jun 5 2015 Touseef Liaqat <tliaqat@vmware.com> 18-1
44
+-   Initial build.  First version