source: gnome/platform/sassc.xml@ 95965b6

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.4 9.0 9.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt 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 95965b6 was 95965b6, checked in by Bruce Dubbs <bdubbs@…>, 5 years ago

Update to plasma-5,15,0.
Minor dependency issues.
Make sassc visble in sysv book.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@21141 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 "3685f6f58282e06d82f3171063797a90">
19 <!ENTITY libsass-size "320 KB">
20 <!ENTITY libsass-buildsize "168 MB">
21 <!ENTITY libsass-time "1.1 SBU">
22]>
23
24<sect1 id="sassc" xreflabel="sassc-&sassc-version;">
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 &lfs83_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;
148autoreconf -fi &amp;&amp;
149
150./configure --prefix=/usr &amp;&amp;
151make</userinput></screen>
152
153 <para>
154 This package does not come with at test suite.
155 </para>
156
157 <para>
158 Now, as the <systemitem class="username">root</systemitem> user:
159 </para>
160
161<screen role="root"><userinput>make install</userinput></screen>
162
163 </sect2>
164
165 <sect2 role="content">
166 <title>Contents</title>
167
168 <segmentedlist>
169 <segtitle>Installed Programs</segtitle>
170 <segtitle>Installed Libraries</segtitle>
171 <segtitle>Installed Directories</segtitle>
172
173 <seglistitem>
174 <seg>
175 sassc
176 </seg>
177 <seg>
178 libsass.so
179 </seg>
180 <seg>
181 /usr/include/sass
182 </seg>
183 </seglistitem>
184 </segmentedlist>
185
186 <variablelist>
187 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
188 <?dbfo list-presentation="list"?>
189 <?dbhtml list-presentation="table"?>
190
191 <varlistentry id="sassc-prog">
192 <term><command>sassc</command></term>
193 <listitem>
194 <para>
195 provides a command line interface to the libsass library.
196 </para>
197 <indexterm zone="sassc sassc-prog">
198 <primary sortas="b-sassc">sassc</primary>
199 </indexterm>
200 </listitem>
201 </varlistentry>
202
203 </variablelist>
204
205 </sect2>
206
207</sect1>
Note: See TracBrowser for help on using the repository browser.