source: gnome/platform/sassc.xml@ 058cdbf

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 058cdbf was fef2695, checked in by Bruce Dubbs <bdubbs@…>, 6 years ago

Update to File-BaseDir-0.08 (Perl Module).

Update to GNOME 3.28 platform packages:
gnome-control-center gnome-shell gnome-shell-extensions
gnome-user-docs mutter gdm gnome-session.

Update to epiphany-3.28.0.1.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@20033 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY sassc-download-http
8 "https://github.com/sass/sassc/archive/&sassc-version;/sassc-&sassc-version;.tar.gz">
9 <!ENTITY sassc-download-ftp " ">
10 <!ENTITY sassc-md5sum "f5c6aeb4e98c96d093f20295fc490f2c">
11 <!ENTITY sassc-size "28 KB">
12 <!ENTITY sassc-buildsize "4.3 MB">
13 <!ENTITY sassc-time "0.1 SBU">
14
15 <!ENTITY libsass-download-http
16 "https://github.com/sass/libsass/archive/&libsass-version;/libsass-&libsass-version;.tar.gz">
17 <!ENTITY libsass-download-ftp " ">
18 <!ENTITY libsass-md5sum "0d0159517a138e201225461a73884e2a">
19 <!ENTITY libsass-size "320 KB">
20 <!ENTITY libsass-buildsize "167 MB">
21 <!ENTITY libsass-time "0.5 SBU">
22]>
23
24<sect1 id="sassc" xreflabel="sassc-&sassc-version;" revision="systemd">
25 <?dbhtml filename="sassc.html"?>
26
27 <sect1info>
28 <othername>$LastChangedBy$</othername>
29 <date>$Date$</date>
30 </sect1info>
31
32 <title>sassc-&sassc-version;</title>
33
34 <indexterm zone="sassc">
35 <primary sortas="a-sassc">sassc</primary>
36 </indexterm>
37
38 <sect2 role="package">
39 <title>Introduction to sassc</title>
40
41 <para>
42 SassC is a wrapper around libsass, a CSS pre-processor language.
43 </para>
44
45 &lfs82_checked;
46
47 <bridgehead renderas="sect3">Package Information</bridgehead>
48 <itemizedlist spacing="compact">
49 <listitem>
50 <para>
51 Download (HTTP): <ulink url="&sassc-download-http;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download (FTP): <ulink url="&sassc-download-ftp;"/>
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download MD5 sum: &sassc-md5sum;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Download size: &sassc-size;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated disk space required: &sassc-buildsize;
72 </para>
73 </listitem>
74 <listitem>
75 <para>
76 Estimated build time: &sassc-time;
77 </para>
78 </listitem>
79 </itemizedlist>
80
81 <bridgehead renderas="sect3">Additional Package Information</bridgehead>
82 <itemizedlist spacing="compact">
83 <listitem>
84 <para>
85 Download (HTTP): <ulink url="&libsass-download-http;"/>
86 </para>
87 </listitem>
88 <listitem>
89 <para>
90 Download (FTP): <ulink url="&libsass-download-ftp;"/>
91 </para>
92 </listitem>
93 <listitem>
94 <para>
95 Download MD5 sum: &libsass-md5sum;
96 </para>
97 </listitem>
98 <listitem>
99 <para>
100 Download size: &libsass-size;
101 </para>
102 </listitem>
103 <listitem>
104 <para>
105 Estimated disk space required: &libsass-buildsize;
106 </para>
107 </listitem>
108 <listitem>
109 <para>
110 Estimated build time: &libsass-time;
111 </para>
112 </listitem>
113 </itemizedlist>
114
115 <para condition="html" role="usernotes">User Notes:
116 <ulink url="&blfs-wiki;/sassc"/>
117 </para>
118 </sect2>
119
120 <sect2 role="installation">
121 <title>Installation of sassc</title>
122
123 <para>
124 First, build the library:
125 </para>
126
127<screen><userinput>autoreconf -fi &amp;&amp;
128
129./configure --prefix=/usr --disable-static &amp;&amp;
130make</userinput></screen>
131
132 <para>
133 This package does not come with at test suite.
134 </para>
135
136 <para>
137 Now, as the <systemitem class="username">root</systemitem> user:
138 </para>
139
140<screen role="root"><userinput>make install</userinput></screen>
141
142 <para>
143 Build the command line wrapper:
144 </para>
145
146<screen><userinput>tar -xf ../sassc-&sassc-version;.tar.gz &amp;&amp;
147cd sassc-&sassc-version; &amp;&amp;
148
149autoreconf -fi &amp;&amp;
150
151./configure --prefix=/usr &amp;&amp;
152make</userinput></screen>
153
154 <para>
155 This package does not come with at test suite.
156 </para>
157
158 <para>
159 Now, as the <systemitem class="username">root</systemitem> user:
160 </para>
161
162<screen role="root"><userinput>make install</userinput></screen>
163
164 </sect2>
165
166 <sect2 role="content">
167 <title>Contents</title>
168
169 <segmentedlist>
170 <segtitle>Installed Programs</segtitle>
171 <segtitle>Installed Libraries</segtitle>
172 <segtitle>Installed Directories</segtitle>
173
174 <seglistitem>
175 <seg>
176 sassc
177 </seg>
178 <seg>
179 libsassc.so
180 </seg>
181 <seg>
182 /usr/include/sass
183 </seg>
184 </seglistitem>
185 </segmentedlist>
186
187 <variablelist>
188 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
189 <?dbfo list-presentation="list"?>
190 <?dbhtml list-presentation="table"?>
191
192 <varlistentry id="sassc-prog">
193 <term><command>sassc</command></term>
194 <listitem>
195 <para>
196 provides a command line interface to the libsass library.
197 </para>
198 <indexterm zone="sassc sassc-prog">
199 <primary sortas="b-sassc">sassc</primary>
200 </indexterm>
201 </listitem>
202 </varlistentry>
203
204 </variablelist>
205
206 </sect2>
207
208</sect1>
Note: See TracBrowser for help on using the repository browser.